aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-tcap.c
diff options
context:
space:
mode:
authorPascal Quantin <pascal.quantin@gmail.com>2014-05-08 12:38:34 +0200
committerAnders Broman <a.broman58@gmail.com>2014-05-08 10:50:59 +0000
commit54be3eaaec057c44a4b42e4cf538cd07ee247bce (patch)
treee26c7282e978fd60abbcafcb9094526d235a3fbc /epan/dissectors/packet-tcap.c
parent4eaf1c82c58c10e19658405b2e96e8249e9aad33 (diff)
TCAP: set a fence on info column after calling sub dissector
Bug: 10091 Change-Id: I7af57345e31209fb4dd02cdab7960c44c69dc0a5 Reviewed-on: https://code.wireshark.org/review/1555 Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-tcap.c')
-rw-r--r--epan/dissectors/packet-tcap.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/epan/dissectors/packet-tcap.c b/epan/dissectors/packet-tcap.c
index e4d360c25e..edcbedff16 100644
--- a/epan/dissectors/packet-tcap.c
+++ b/epan/dissectors/packet-tcap.c
@@ -4045,8 +4045,10 @@ dissect_tcap_ITU_ComponentPDU(gboolean implicit_tag _U_, tvbuff_t *tvb, int offs
}
/* Call the sub dissector if present, and not already called */
- if (is_subdissector)
+ if (is_subdissector) {
call_dissector_with_data(subdissector_handle, tvb, actx->pinfo, tree, actx->value_ptr);
+ col_set_fence(actx->pinfo->cinfo, COL_INFO);
+ }
return offset;
}