aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h245
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2014-06-19 21:41:35 -0700
committerEvan Huus <eapache@gmail.com>2014-06-20 05:33:04 +0000
commit980f5f6711ae5642adc509d9a8ee81d188f3a431 (patch)
treef4156d2827cd82a2812aadb2337fcd144a3bf5b5 /asn1/h245
parent45608810709251652104e32b3fd8065b0d50d0aa (diff)
batch of tvb-length conversions
Change-Id: I5e40df8af6841e3dad71c41d7e43c7971611b15f Reviewed-on: https://code.wireshark.org/review/2473 Reviewed-by: Evan Huus <eapache@gmail.com>
Diffstat (limited to 'asn1/h245')
-rw-r--r--asn1/h245/packet-h245-template.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/asn1/h245/packet-h245-template.c b/asn1/h245/packet-h245-template.c
index 60fe8f1860..8b05e30c3f 100644
--- a/asn1/h245/packet-h245-template.c
+++ b/asn1/h245/packet-h245-template.c
@@ -425,11 +425,11 @@ dissect_h245_h245(tvbuff_t *tvb, packet_info *pinfo, proto_tree *parent_tree)
col_set_str(pinfo->cinfo, COL_PROTOCOL, PSNAME);
- it=proto_tree_add_protocol_format(parent_tree, proto_h245, tvb, 0, tvb_length(tvb), PSNAME);
+ it=proto_tree_add_protocol_format(parent_tree, proto_h245, tvb, 0, tvb_captured_length(tvb), PSNAME);
tr=proto_item_add_subtree(it, ett_h245);
/* assume that whilst there is more tvb data, there are more h245 commands */
- while ( tvb_length_remaining( tvb, offset>>3 )>0 ){
+ while ( tvb_reported_length_remaining( tvb, offset>>3 )>0 ){
CLEANUP_PUSH(reset_h245_pi, NULL);
h245_pi=wmem_new(wmem_packet_scope(), h245_packet_info);
init_h245_packet_info(h245_pi);