summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-giop.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2007-04-22 10:29:47 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2007-04-22 10:29:47 +0000
commit647446dadf9b6344fe08da087998adff1087473b (patch)
tree32d37b783c3c8d195bde8f837ce55bc1ad53c056 /epan/dissectors/packet-giop.c
parent18c6fbb3794522f560d264b7caceaae703d78080 (diff)
downloadwireshark-647446dadf9b6344fe08da087998adff1087473b.tar.gz
Fix for bug 1541. Adjust offset for long longs by 8, not by 4.
svn path=/trunk/; revision=21496
Diffstat (limited to 'epan/dissectors/packet-giop.c')
-rw-r--r--epan/dissectors/packet-giop.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-giop.c b/epan/dissectors/packet-giop.c
index 79d8b0b7e1..1a0275124b 100644
--- a/epan/dissectors/packet-giop.c
+++ b/epan/dissectors/packet-giop.c
@@ -2287,7 +2287,7 @@ gint64 get_CDR_long_long(tvbuff_t *tvb, int *offset, gboolean stream_is_big_endi
val = (stream_is_big_endian) ? tvb_get_ntoh64 (tvb, *offset) :
tvb_get_letoh64 (tvb, *offset);
- *offset += 4;
+ *offset += 8;
return val;
}