aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorismaelrti <ismael@rti.com>2018-11-13 17:06:37 +0100
committerAnders Broman <a.broman58@gmail.com>2018-11-13 19:06:49 +0000
commit2ed4743915a7768959aff59631357a7b13a16dbb (patch)
tree653d2b7c73f49df7d21d770d0652e4d1d393fe1c /epan
parentd2227b768ed50b50a2325c8521de4605bb7be78f (diff)
RTPS: APP_ACK_CONF submessage dissection fixed.
Count field of APP_ACK_CONF submessage was dissected using a signed integer rather than unsigned. That avoids the dissection to be concluded due to a wrong type error. Change-Id: Ie5f85ce5b3d745d74e1b50d96a77560fb854034b Reviewed-on: https://code.wireshark.org/review/30605 Petri-Dish: Anders Broman <a.broman58@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-rtps.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-rtps.c b/epan/dissectors/packet-rtps.c
index 548a1043f9..3932daafb8 100644
--- a/epan/dissectors/packet-rtps.c
+++ b/epan/dissectors/packet-rtps.c
@@ -10799,7 +10799,7 @@ void proto_register_rtps(void) {
{ &hf_rtps_param_app_ack_conf_virtual_writer_count,
{ "virtualWriterCount", "rtps.app_ack_conf.virtual_writer_count",
- FT_INT32, BASE_DEC, NULL, 0,
+ FT_UINT32, BASE_DEC, NULL, 0,
NULL, HFILL }
},