aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/tcap
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 /asn1/tcap
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 'asn1/tcap')
-rw-r--r--asn1/tcap/packet-tcap-template.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/asn1/tcap/packet-tcap-template.c b/asn1/tcap/packet-tcap-template.c
index a1ff2dc5ab..b1ffeb3557 100644
--- a/asn1/tcap/packet-tcap-template.c
+++ b/asn1/tcap/packet-tcap-template.c
@@ -2458,8 +2458,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;
}