From 9353c8ca44b8e8f62caad545aa61cdc48c0b7671 Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Mon, 4 Mar 2013 15:34:42 +0200 Subject: [PATCH] emulator: Fix missing break statement for LE Read White List Size --- emulator/btdev.c | 1 + 1 file changed, 1 insertion(+) diff --git a/emulator/btdev.c b/emulator/btdev.c index 25666061b..b74442e79 100644 --- a/emulator/btdev.c +++ b/emulator/btdev.c @@ -1298,6 +1298,7 @@ static void default_cmd(struct btdev *btdev, uint16_t opcode, lrwls.status = 0; lrwls.size = 0; cmd_complete(btdev, opcode, &lrwls, sizeof(lrwls)); + break; case BT_HCI_CMD_LE_READ_SUPPORTED_STATES: if (btdev->type == BTDEV_TYPE_BREDR) -- 2.47.3