From 2ed4743915a7768959aff59631357a7b13a16dbb Mon Sep 17 00:00:00 2001 From: ismaelrti Date: Tue, 13 Nov 2018 17:06:37 +0100 Subject: 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 Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman --- epan/dissectors/packet-rtps.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'epan') 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 } }, -- cgit v1.2.3