aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-bthci_evt.c
diff options
context:
space:
mode:
authorRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-05-14 10:18:29 +0000
committerRonnie Sahlberg <ronnie_sahlberg@ozemail.com.au>2006-05-14 10:18:29 +0000
commite78afc651818549e0c1cb8e5803155cf6ce0cf9c (patch)
tree1c2f9609a3f3a34e19ddbee93edf948cae93393a /epan/dissectors/packet-bthci_evt.c
parente49fe267e61897b1404444c401981c62c873d021 (diff)
add bluetooth acl dissection
the fragment reassembly from the old patch is commented out since it has to be redone completely using emem and se_trees the proper way. but to do this i would need example captures of fragmented bluetooth traffic first. svn path=/trunk/; revision=18149
Diffstat (limited to 'epan/dissectors/packet-bthci_evt.c')
-rw-r--r--epan/dissectors/packet-bthci_evt.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-bthci_evt.c b/epan/dissectors/packet-bthci_evt.c
index e22c5ed78a..a46f502126 100644
--- a/epan/dissectors/packet-bthci_evt.c
+++ b/epan/dissectors/packet-bthci_evt.c
@@ -717,7 +717,9 @@ dissect_bthci_evt_loopback_command(tvbuff_t *tvb, int offset, packet_info *pinfo
tvbuff_t *next_tvb;
next_tvb = tvb_new_subset(tvb, offset, tvb_length_remaining(tvb, offset), -1);
-/*qqq*/ call_dissector(bthci_com_handle, next_tvb, pinfo, tree);
+ if(bthci_com_handle){
+ call_dissector(bthci_com_handle, next_tvb, pinfo, tree);
+ }
offset+=tvb_length_remaining(tvb, offset);
return offset;