aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorSayuri Mizushima <yamaguchi55@protonmail.ch>2018-05-08 17:53:34 +0300
committerAnders Broman <a.broman58@gmail.com>2018-05-09 21:25:40 +0000
commit4362276ef3f31f634825b445d62d7bad66755b6c (patch)
tree906ed0b2ac45d1b95bc5b21dbec2a98918e5ac9c /epan/dissectors
parent9a8f44f4bb0ba26da266db421466e15cd93c42ef (diff)
fp: Avoid changes to info column after payload dissection
Previously info was appended to the end of the info set by an underlying protocol (mostly rlc/rrc) Change-Id: I7fe0d8d485f81ed2c108099e76d15c887108164f Reviewed-on: https://code.wireshark.org/review/27399 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-umts_fp.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/epan/dissectors/packet-umts_fp.c b/epan/dissectors/packet-umts_fp.c
index 12aa4f95f2..8d8f2bf509 100644
--- a/epan/dissectors/packet-umts_fp.c
+++ b/epan/dissectors/packet-umts_fp.c
@@ -3292,14 +3292,13 @@ dissect_hsdsch_channel_info(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
#endif
}
+ col_append_fstr(pinfo->cinfo, COL_INFO, " %ux%u-bit PDUs User-Buffer-Size=%u",
+ number_of_pdus, pdu_length, user_buffer_size);
/* MAC-d PDUs */
offset = dissect_macd_pdu_data(tvb, pinfo, tree, offset, pdu_length,
number_of_pdus, p_fp_info, data);
- col_append_fstr(pinfo->cinfo, COL_INFO, " %ux%u-bit PDUs User-Buffer-Size=%u",
- number_of_pdus, pdu_length, user_buffer_size);
-
/* Extra IEs (if there is room for them) */
if (((p_fp_info->release == 6) ||
(p_fp_info->release == 7)) &&