summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2012-07-24 10:25:13 +0000
committerAnders Broman <anders.broman@ericsson.com>2012-07-24 10:25:13 +0000
commit6572a8e55cdcd79bfc535a5211a73be8be6dd8b0 (patch)
treeeafa96a229d3e40bb3da999dc8e3bd97aa09b570
parent3743a01714a4febbcf33714da6454fdd65ec2eff (diff)
downloadwireshark-6572a8e55cdcd79bfc535a5211a73be8be6dd8b0.tar.gz
From Peng Di:
GIOP request_id used for sub dissectors is not assigned when decoding GIOP 1.2 Request message. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7516 svn path=/trunk/; revision=43955
-rw-r--r--epan/dissectors/packet-giop.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-giop.c b/epan/dissectors/packet-giop.c
index ce5f7a94f3..db997801b1 100644
--- a/epan/dissectors/packet-giop.c
+++ b/epan/dissectors/packet-giop.c
@@ -3606,6 +3606,7 @@ dissect_giop_request_1_2 (tvbuff_t * tvb, packet_info * pinfo,
}
request_id = get_CDR_ulong(tvb, &offset, stream_is_big_endian,GIOP_HEADER_SIZE);
+ header->req_id = request_id;
if (check_col(pinfo->cinfo, COL_INFO))
{
col_append_fstr(pinfo->cinfo, COL_INFO, " id=%u", request_id);