aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-btatt.c
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2015-02-06 17:25:18 +0100
committerAnders Broman <a.broman58@gmail.com>2015-02-07 09:05:39 +0000
commit1eec03469da9a70b079dfe900f3ba7e485a2e667 (patch)
tree03894aa42ecef095f7453b640faa2111c20e4ba8 /epan/dissectors/packet-btatt.c
parent1ecd0ad076ad7dabb30b426fd8bb9042c116614a (diff)
Bluetooth: ATT: Missing break in switch (CID 1268199)
Change-Id: I562f1b8c1d39586c2a3f25363e89e81587176c58 Reviewed-on: https://code.wireshark.org/review/6987 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-btatt.c')
-rw-r--r--epan/dissectors/packet-btatt.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-btatt.c b/epan/dissectors/packet-btatt.c
index 9ecc828f66..cd2635401c 100644
--- a/epan/dissectors/packet-btatt.c
+++ b/epan/dissectors/packet-btatt.c
@@ -1496,6 +1496,7 @@ get_request(tvbuff_t *tvb, gint offset, packet_info *pinfo, guint8 opcode,
if (tvb_captured_length_remaining(tvb, offset) < 1)
return NULL;
opcode = tvb_get_guint8(tvb, 1) + 1;
+ break;
case 0x03: /* Exchange MTU Response */
case 0x05: /* Find Information Response */
case 0x07: /* Find By Type Value Response */