aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-10-13 10:50:50 +0200
committerMichael Mann <mmann78@netscape.net>2014-10-13 12:24:10 +0000
commit2c23c7e79d3cf3fc82af67d706981dc1e7abb328 (patch)
treebcece1344f13797535cbcf7e82a0f08e6d102bcb
parentebbe70b3356b1fa9c59c91c9a4953082b013a297 (diff)
SPDY: Fix the display of COL_INFO...
Clear the COL_INFO before start to dissect SPDY PDU Change-Id: I7a22515f1c2c89b5647003320ff455a74fbce42a Ping-Bug: 10566 Reviewed-on: https://code.wireshark.org/review/4636 Reviewed-by: Michael Mann <mmann78@netscape.net>
-rw-r--r--epan/dissectors/packet-spdy.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/epan/dissectors/packet-spdy.c b/epan/dissectors/packet-spdy.c
index 05ed2e15b3..a80e150b6a 100644
--- a/epan/dissectors/packet-spdy.c
+++ b/epan/dissectors/packet-spdy.c
@@ -1659,8 +1659,10 @@ static guint get_spdy_message_len(packet_info *pinfo _U_, tvbuff_t *tvb,
*/
static int dissect_spdy(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void *data _U_)
{
- tcp_dissect_pdus(tvb, pinfo, tree, TRUE, 8, get_spdy_message_len, dissect_spdy_frame, data);
- return tvb_captured_length(tvb);
+ col_clear(pinfo->cinfo, COL_INFO);
+
+ tcp_dissect_pdus(tvb, pinfo, tree, TRUE, 8, get_spdy_message_len, dissect_spdy_frame, data);
+ return tvb_captured_length(tvb);
}
#if 0 /* heuristic too weak */