diff options
author | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-10-08 13:17:51 +0000 |
---|---|---|
committer | Kovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com> | 2009-10-08 13:17:51 +0000 |
commit | a9ed97b3444d07046a375096fd617473e3b9a1a7 (patch) | |
tree | c7bcccb2accad13ba259d19fe7ed07fcad8247b9 /asn1/h248 | |
parent | 2e3bc6bcc28fa7031e4d4e2d595e23e76ae48142 (diff) | |
download | wireshark-a9ed97b3444d07046a375096fd617473e3b9a1a7.tar.gz wireshark-a9ed97b3444d07046a375096fd617473e3b9a1a7.tar.bz2 wireshark-a9ed97b3444d07046a375096fd617473e3b9a1a7.zip |
From Gerasimos Dimitriadis via. bug 4104:
When dissecting a h248 message, col_set_str is called with a string from the ephemeral pool and an assertion fails.
svn path=/trunk/; revision=30398
Diffstat (limited to 'asn1/h248')
-rw-r--r-- | asn1/h248/h248.cnf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asn1/h248/h248.cnf b/asn1/h248/h248.cnf index b98fb65ac5..cec377bf02 100644 --- a/asn1/h248/h248.cnf +++ b/asn1/h248/h248.cnf @@ -88,7 +88,7 @@ TransactionPending/transactionId tpend_transactionId #.FN_FTR Message if (check_col(actx->pinfo->cinfo, COL_INFO)) - col_set_str(actx->pinfo->cinfo, COL_INFO, gcp_msg_to_str(curr_info.msg,keep_persistent_data)); + col_add_str(actx->pinfo->cinfo, COL_INFO, gcp_msg_to_str(curr_info.msg,keep_persistent_data)); if (keep_persistent_data) gcp_analyze_msg(h248_tree, h248_tvb, curr_info.msg, &h248_arrel); |