aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-rlc-lte.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2012-09-11 08:28:07 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2012-09-11 08:28:07 +0000
commit9f92dc93c546a59e08e2fef4b742ddda39230606 (patch)
tree977d0908d3a418c567ea31fcec2d863745069f81 /epan/dissectors/packet-rlc-lte.c
parentdee4443809a9cf723b68548391b1a140d6a986e5 (diff)
Add data parameter to call_dissector_only.
svn path=/trunk/; revision=44872
Diffstat (limited to 'epan/dissectors/packet-rlc-lte.c')
-rw-r--r--epan/dissectors/packet-rlc-lte.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-rlc-lte.c b/epan/dissectors/packet-rlc-lte.c
index ceafda2329..55c2e6fbea 100644
--- a/epan/dissectors/packet-rlc-lte.c
+++ b/epan/dissectors/packet-rlc-lte.c
@@ -788,7 +788,7 @@ static void show_PDU_in_tree(packet_info *pinfo, proto_tree *tree, tvbuff_t *tvb
protocol_handle = find_dissector("pdcp-lte");
TRY {
- call_dissector_only(protocol_handle, pdcp_tvb, pinfo, tree);
+ call_dissector_only(protocol_handle, pdcp_tvb, pinfo, tree, NULL);
}
CATCH_ALL {
}
@@ -1856,7 +1856,7 @@ static void dissect_rlc_lte_tm(tvbuff_t *tvb, packet_info *pinfo,
/* Call it (catch exceptions) */
TRY {
- call_dissector_only(protocol_handle, rrc_tvb, pinfo, tree);
+ call_dissector_only(protocol_handle, rrc_tvb, pinfo, tree, NULL);
}
CATCH_ALL {
}