diff options
author | Anders Broman <anders.broman@ericsson.com> | 2006-02-27 09:02:16 +0000 |
---|---|---|
committer | Anders Broman <anders.broman@ericsson.com> | 2006-02-27 09:02:16 +0000 |
commit | 21a8f186bb6d46a2e0f75c9912ec1848fe83a51c (patch) | |
tree | e5b0444a119a1326dcac6a0202e504857a012dbe /epan/dissectors/packet-x11.c | |
parent | 0fc74ff3357fd9444963b8d22e730a6198a43a02 (diff) | |
download | wireshark-21a8f186bb6d46a2e0f75c9912ec1848fe83a51c.tar.gz wireshark-21a8f186bb6d46a2e0f75c9912ec1848fe83a51c.tar.bz2 wireshark-21a8f186bb6d46a2e0f75c9912ec1848fe83a51c.zip |
from dieder:
packet-x11
copy and past overlooked? test with 8 but substract to 4.
svn path=/trunk/; revision=17420
Diffstat (limited to 'epan/dissectors/packet-x11.c')
-rw-r--r-- | epan/dissectors/packet-x11.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-x11.c b/epan/dissectors/packet-x11.c index 28af1bbcde..06c3ffff30 100644 --- a/epan/dissectors/packet-x11.c +++ b/epan/dissectors/packet-x11.c @@ -4441,7 +4441,7 @@ dissect_x11_replies(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree) * return. */ pinfo->desegment_offset = offset; - pinfo->desegment_len = 4 - length_remaining; + pinfo->desegment_len = 8 - length_remaining; return; } } |