aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2017-01-09 22:40:07 -0800
committerGuy Harris <guy@alum.mit.edu>2017-01-10 06:40:45 +0000
commit0ecfc7280cf3d793a754722b27692216e5a2986f (patch)
treefb55970128be57397b9d2beea83cf5fa993497c9 /epan/dissectors
parent7cd6906056922e4b8f68f1216d94eaa0809896fe (diff)
Use tvb_new_subset_remaining() rather than tvb_new_subset_length_caplen().
Any call of the form tvb_new_subset_length_caplen(tvb, offset, -1, -1) should instead be tvb_new_subset_remaining(tvb, offset). Change-Id: I4bc95b028103ea4fc82453ef3460c147d7ccabd6 Reviewed-on: https://code.wireshark.org/review/19598 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-c15ch.c6
-rw-r--r--epan/dissectors/packet-dof.c36
-rw-r--r--epan/dissectors/packet-isi.c2
-rw-r--r--epan/dissectors/packet-ncp2222.inc6
4 files changed, 25 insertions, 25 deletions
diff --git a/epan/dissectors/packet-c15ch.c b/epan/dissectors/packet-c15ch.c
index cc5afedcf5..87cfbd0190 100644
--- a/epan/dissectors/packet-c15ch.c
+++ b/epan/dissectors/packet-c15ch.c
@@ -5978,7 +5978,7 @@ static int dissect_c15ch_inc_gwe(tvbuff_t *tvb, packet_info *pinfo, proto_tree *
proto_tree_add_item(c15ch_inc_gwe_tree, hf_c15ch_inc_gwe_datatype,
tvb, 10, 1, ENC_BIG_ENDIAN);
}
- next_tvb = tvb_new_subset_length_caplen(tvb, 11, -1, -1);
+ next_tvb = tvb_new_subset_remaining(tvb, 11);
/*third level dissection*/
retv = 11 + dissector_try_uint(c15ch_inc_gwe_dissector_table, type_num, next_tvb, pinfo, tree);
return retv;
@@ -6641,7 +6641,7 @@ static int dissect_c15ch_out_gwe(tvbuff_t *tvb, packet_info *pinfo, proto_tree *
proto_tree_add_item(c15ch_out_gwe_tree, hf_c15ch_out_gwe_gwe_data_type,
tvb, 14, 1, ENC_BIG_ENDIAN);
}
- next_tvb = tvb_new_subset_length_caplen(tvb, 15, -1, -1);
+ next_tvb = tvb_new_subset_remaining(tvb, 15);
dissector_try_uint(c15ch_out_gwe_dissector_table, data_type, next_tvb, pinfo, tree);
return tvb_reported_length(tvb);
@@ -7208,7 +7208,7 @@ static int dissect_c15ch_tone(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tre
proto_tree_add_item(c15ch_tone_tree, hf_c15ch_tone_msg_type,
tvb, 0, 1, ENC_BIG_ENDIAN);
}
- next_tvb = tvb_new_subset_length_caplen(tvb, 1, -1, -1);
+ next_tvb = tvb_new_subset_remaining(tvb, 1);
retv = 1 + dissector_try_uint(c15ch_tone_dissector_table, msg_type, next_tvb, pinfo, tree);
return retv;
}
diff --git a/epan/dissectors/packet-dof.c b/epan/dissectors/packet-dof.c
index 4c78d44bec..d8ac8f18cd 100644
--- a/epan/dissectors/packet-dof.c
+++ b/epan/dissectors/packet-dof.c
@@ -2522,7 +2522,7 @@ static int dissect_2008_16_security_2(tvbuff_t *tvb, packet_info *pinfo, proto_t
{
proto_item *ti = proto_tree_add_item(tree, hf_security_2_permission, tvb, offset, -1, ENC_NA);
proto_tree *subtree = proto_item_add_subtree(ti, ett_security_2_permission);
- tvbuff_t *next_tvb = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *next_tvb = tvb_new_subset_remaining(tvb, offset);
gint len = dissect_2008_16_security_1(next_tvb, pinfo, subtree, NULL);
proto_item_set_len(ti, len);
offset += len;
@@ -2564,7 +2564,7 @@ static int dissect_2008_16_security_3_1(tvbuff_t *tvb, packet_info *pinfo, proto
/* Security Node Identifier */
{
int block_length;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
proto_tree *subtree;
ti = proto_tree_add_item(tree, hf_security_3_1_security_node_identifier, tvb, offset, 0, ENC_NA);
subtree = proto_item_add_subtree(ti, ett_security_3_1_security_node_identifier);
@@ -2641,7 +2641,7 @@ static int dissect_2008_16_security_4(tvbuff_t *tvb, packet_info *pinfo, proto_t
{
int block_length;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
proto_item *ti;
proto_tree *subtree;
dof_2008_16_security_3_1 return_3_1;
@@ -2669,7 +2669,7 @@ static int dissect_2008_16_security_4(tvbuff_t *tvb, packet_info *pinfo, proto_t
{
int block_length;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
proto_item *ti;
proto_tree *subtree;
@@ -2717,7 +2717,7 @@ static int dissect_2008_16_security_6_1(tvbuff_t *tvb, packet_info *pinfo, proto
/* Desired Security Mode */
{
int block_length;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
proto_item *ti;
proto_tree *subtree;
@@ -2741,7 +2741,7 @@ static int dissect_2008_16_security_6_1(tvbuff_t *tvb, packet_info *pinfo, proto
{
int block_length;
dof_2008_16_security_4 output;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
proto_item *ti;
proto_tree *subtree;
@@ -2774,7 +2774,7 @@ static int dissect_2008_16_security_6_2(tvbuff_t *tvb, packet_info *pinfo, proto
{
int block_length;
dof_2008_16_security_4 output;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
proto_item *ti;
proto_tree *subtree;
@@ -2808,7 +2808,7 @@ static int dissect_2008_16_security_6_3(tvbuff_t *tvb, packet_info *pinfo, proto
/* Session Security Scope */
{
int block_length;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
proto_item *ti;
proto_tree *subtree;
@@ -2822,7 +2822,7 @@ static int dissect_2008_16_security_6_3(tvbuff_t *tvb, packet_info *pinfo, proto
/* Initiator Validation */
{
int block_length;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
proto_item *ti;
proto_tree *subtree;
@@ -2836,7 +2836,7 @@ static int dissect_2008_16_security_6_3(tvbuff_t *tvb, packet_info *pinfo, proto
/* Responder Validation */
{
int block_length;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
proto_item *ti;
proto_tree *subtree;
@@ -2982,7 +2982,7 @@ static int dissect_2008_16_security_11(tvbuff_t *tvb, packet_info *pinfo, proto_
{
proto_item *ti = proto_tree_add_item(tree, hf_security_11_permission_security_scope, tvb, offset, -1, ENC_NA);
proto_tree *subtree = proto_item_add_subtree(ti, ett_security_11_permission_security_scope);
- tvbuff_t *next_tvb = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *next_tvb = tvb_new_subset_remaining(tvb, offset);
gint len;
len = dissect_2008_16_security_12(next_tvb, pinfo, subtree, NULL);
proto_item_set_len(ti, len);
@@ -3122,7 +3122,7 @@ static gint dissect_2009_11_type_4(tvbuff_t *tvb, packet_info *pinfo, proto_tree
do
{
- tvbuff_t *packet = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *packet = tvb_new_subset_remaining(tvb, offset);
proto_tree *attribute_tree;
gint attribute_length;
@@ -5672,7 +5672,7 @@ static int dissect_tunnel_common(tvbuff_t *tvb, packet_info *pinfo, proto_tree *
opcode = tvb_get_guint8(tvb, offset + 3);
if (opcode == 3)
{
- tvbuff_t *next_tvb = tvb_new_subset_length_caplen(tvb, offset + 5, -1, -1);
+ tvbuff_t *next_tvb = tvb_new_subset_remaining(tvb, offset + 5);
dissect_dof_common(next_tvb, pinfo, tree, &ref->api_data);
}
@@ -7388,7 +7388,7 @@ static int dissect_options(tvbuff_t *tvb, gint offset, packet_info *pinfo, proto
while (offset < (gint)tvb_captured_length(tvb))
{
proto_tree *subtree = proto_tree_add_subtree(tree, tvb, offset, 0, ett_2008_1_dsp_12_option, NULL, "Option");
- tvbuff_t *next_tvb = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *next_tvb = tvb_new_subset_remaining(tvb, offset);
gint len = dissect_2008_1_dsp_1(next_tvb, pinfo, subtree);
proto_item_set_len(proto_tree_get_parent(subtree), len);
offset += len;
@@ -9197,7 +9197,7 @@ static int dissect_sgmp(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, voi
{
dof_secmode_api_data setup_data;
gint block_length;
- tvbuff_t *ntvb = tvb_new_subset_length_caplen(tvb, A_offset, -1, -1);
+ tvbuff_t *ntvb = tvb_new_subset_remaining(tvb, A_offset);
setup_data.context = INITIALIZE;
setup_data.security_mode_offset = 0;
@@ -9300,7 +9300,7 @@ static int dissect_2008_4_tep_2_2_1(tvbuff_t *tvb, packet_info *pinfo, proto_tre
/* Initial State */
{
int block_length;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
ti = proto_tree_add_item(tree, hf_tep_2_2_1_initial_state, tvb, offset, 0, ENC_NA);
ti = proto_item_add_subtree(ti, ett_tep_2_2_1_initial_state);
block_length = dof_dissect_pdu(dissect_2008_16_security_9, start, pinfo, ti, NULL);
@@ -9585,7 +9585,7 @@ static int dissect_tep(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void
if (rekey_data && rekey_data->is_rekey)
{
int block_length;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
ti = proto_tree_add_item(tep_tree, hf_tep_2_2_responder_initialization, tvb, offset, 0, ENC_NA);
ti = proto_item_add_subtree(ti, ett_tep_2_2_responder_initialization);
block_length = dissect_2008_4_tep_2_2_1(start, pinfo, ti, &ssid, data);
@@ -12598,7 +12598,7 @@ static void dof_packet_delete_proto_data(dof_packet_data *packet, int proto)
static gint dof_dissect_pdu_as_field(dissector_t dissector, tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, int offset, int item, int ett, void *result)
{
int block_length;
- tvbuff_t *start = tvb_new_subset_length_caplen(tvb, offset, -1, -1);
+ tvbuff_t *start = tvb_new_subset_remaining(tvb, offset);
proto_tree *my_tree;
proto_item *ti = proto_tree_add_item(tree, item, tvb, offset, -1, ENC_NA);
my_tree = proto_item_add_subtree(ti, ett);
diff --git a/epan/dissectors/packet-isi.c b/epan/dissectors/packet-isi.c
index fae1635a69..5798e2088f 100644
--- a/epan/dissectors/packet-isi.c
+++ b/epan/dissectors/packet-isi.c
@@ -917,7 +917,7 @@ static int dissect_isi_sim(tvbuff_t *tvb, packet_info *pinfo, proto_item *isitre
proto_tree_add_item(tree, hf_isi_sim_imsi_length, tvb, 3, 1, ENC_BIG_ENDIAN);
/*
- next_tvb = tvb_new_subset_length_caplen(tvb, 0, -1, -1);
+ next_tvb = tvb_new_subset_remaining(tvb, 0);
proto_tree_add_item(tree, hf_isi_sim_imsi_byte_1, next_tvb, 4, 1, ENC_LITTLE_ENDIAN);
dissect_e212_mcc_mnc(next_tvb, pinfo, tree, 4, FALSE );
proto_tree_add_item(tree, hf_E212_msin, tvb, 2, 7, FALSE);
diff --git a/epan/dissectors/packet-ncp2222.inc b/epan/dissectors/packet-ncp2222.inc
index 31a66582fa..35887bc59d 100644
--- a/epan/dissectors/packet-ncp2222.inc
+++ b/epan/dissectors/packet-ncp2222.inc
@@ -6949,7 +6949,7 @@ nds_defrag(tvbuff_t *tvb, packet_info *pinfo, guint32 nw_connection, guint8 sequ
else
{
/* This is either a beggining or middle fragment on second dissection */
- frag_tvb = tvb_new_subset_length_caplen(tvb, 0, -1, -1);
+ frag_tvb = tvb_new_subset_remaining(tvb, 0);
if (request_value->nds_frag)
{
col_add_fstr(pinfo->cinfo, COL_INFO, "[NDS Fragment 0x%08x]", frags[frag_count].nds_frag);
@@ -6972,12 +6972,12 @@ nds_defrag(tvbuff_t *tvb, packet_info *pinfo, guint32 nw_connection, guint8 sequ
/*
* There are no bytes so Dissect this
*/
- frag_tvb = tvb_new_subset_length_caplen(tvb, 0, -1, -1);
+ frag_tvb = tvb_new_subset_remaining(tvb, 0);
}
if (frag_tvb == NULL)
{
/* This is a fragment packet */
- frag_tvb = tvb_new_subset_length_caplen(tvb, 0, -1, -1);
+ frag_tvb = tvb_new_subset_remaining(tvb, 0);
nds_data_handle = find_dissector("data");
call_dissector(nds_data_handle, frag_tvb, pinfo, tree);
}