aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-05-23 14:14:43 +0000
committerBill Meier <wmeier@newsguy.com>2011-05-23 14:14:43 +0000
commit0d03e86f6b4664117daad1def0bc0c337725ba1e (patch)
tree64257949be4f8c839e7d323d9484b9a018d655ad
parent14b997e8b593add39375c65f3be478ea3663063a (diff)
Use correct subtree in 'call dissector(...)': Fixes Coverity 962 [UNUSED].
svn path=/trunk/; revision=37359
-rw-r--r--epan/dissectors/packet-lwapp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-lwapp.c b/epan/dissectors/packet-lwapp.c
index fb37e542dc..a39bb839fb 100644
--- a/epan/dissectors/packet-lwapp.c
+++ b/epan/dissectors/packet-lwapp.c
@@ -341,7 +341,7 @@ static void dissect_lwapp_l3(tvbuff_t *tvb, packet_info *pinfo,
/* Dissect as Ethernet */
next_client = tvb_new_subset_remaining(tvb, 0);
- call_dissector(eth_withoutfcs_handle, next_client, pinfo, tree);
+ call_dissector(eth_withoutfcs_handle, next_client, pinfo, lwapp_tree);
return;
} /* dissect_lwapp_l3*/