aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bthci_vendor.c
diff options
context:
space:
mode:
authorDario Lombardo <lomato@gmail.com>2016-06-23 10:13:15 +0200
committerStig Bjørlykke <stig@bjorlykke.org>2016-06-23 09:49:56 +0000
commit982359c0985914a8afaf0807dd6331e9d48c6a6f (patch)
tree1644e300466ec1c590980f14c9dd88c265644185 /epan/dissectors/packet-bthci_vendor.c
parenta51b6a60b18a3fc81738533a84a72cd0b639ce5e (diff)
bthci: add missing break (CID 1362832)
Change-Id: I705cb17d7c6d615361d29f00ba840a94dc835ff0 Reviewed-on: https://code.wireshark.org/review/16090 Petri-Dish: Dario Lombardo <lomato@gmail.com> Reviewed-by: Stig Bjørlykke <stig@bjorlykke.org>
Diffstat (limited to 'epan/dissectors/packet-bthci_vendor.c')
-rw-r--r--epan/dissectors/packet-bthci_vendor.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-bthci_vendor.c b/epan/dissectors/packet-bthci_vendor.c
index b791421eea..8fac0a95e8 100644
--- a/epan/dissectors/packet-bthci_vendor.c
+++ b/epan/dissectors/packet-bthci_vendor.c
@@ -1013,6 +1013,7 @@ dissect_bthci_vendor_broadcom(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tre
expert_add_info(pinfo, sub_item, &ei_unexpected_parameter);
offset += tvb_captured_length_remaining(tvb, offset);
}
+ break;
default:
if (length > 0) {
sub_item = proto_tree_add_item(main_tree, hf_data, tvb, offset, length, ENC_NA);