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>
This commit is contained in:
Pascal Quantin 2014-05-08 12:38:34 +02:00 committed by Anders Broman
parent 4eaf1c82c5
commit 54be3eaaec
2 changed files with 6 additions and 2 deletions

View File

@ -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;
}

View File

@ -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;
}