fpmux: Fix error string and comment

Change-Id: If4620a43d706f7067a018eb964e4db3733d65210
Reviewed-on: https://code.wireshark.org/review/23980
Petri-Dish: Michael Mann <mmann78@netscape.net>
Tested-by: Petri Dish Buildbot
Reviewed-by: Michael Mann <mmann78@netscape.net>
This commit is contained in:
Nikolai Ipatyev 2017-10-18 23:07:16 +03:00 committed by Michael Mann
parent bc880f6c3e
commit 5fd13dac12
1 changed files with 2 additions and 2 deletions

View File

@ -215,9 +215,9 @@ static int dissect_fp_mux(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, v
return total_length;
}
if (length > total_length - offset) {
/* Length is zero. Showing error and aborting dissection*/
/* Length value too big. Showing error and aborting dissection*/
proto_tree_add_expert_format(fpmux_tree, pinfo, &ei_fpm_bad_length, tvb, offset, length_field_size,
"Bad length: total length exceeds remaining data length (%d) ", (total_length - offset));
"Bad length: payload length exceeds remaining data length (%d) ", (total_length - offset));
return total_length;
}
if (length < 128 && ext_flag) {