The switch statement in bt_host_read() is missing a break in one case. Andrzej Zaborowski <andrew.zaborow...@intel.com> confirmed that this is not an intentional fall-through.
Signed-off-by: Stefan Hajnoczi <stefa...@linux.vnet.ibm.com> --- bt-host.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/bt-host.c b/bt-host.c index df5b7cd..0d3ad28 100644 --- a/bt-host.c +++ b/bt-host.c @@ -130,6 +130,7 @@ static void bt_host_read(void *opaque) pktlen = MIN(pkt[2] + 3, s->len); s->len -= pktlen; pkt += pktlen; + break; default: bad_pkt: -- 1.7.7.3