Fixed bug in transaction: ACK message is not deleted

git-svn-id: https://svn.pjsip.org/repos/pjproject/trunk@556 74dad513-b988-da41-8d7b-12977e46ad98
This commit is contained in:
Benny Prijono 2006-06-27 12:15:56 +00:00
parent 02b8fd8579
commit 704f7620ae
1 changed files with 6 additions and 0 deletions

View File

@ -2372,7 +2372,13 @@ static pj_status_t tsx_on_state_proceeding_uac(pjsip_transaction *tsx,
if (ack_tdata != tsx->last_tx) {
pjsip_tx_data_dec_ref(tsx->last_tx);
tsx->last_tx = ack_tdata;
/* This is a bug.
tsx_send_msg() does NOT decrement tdata's reference counter,
so if we add the reference counter here, tdata will have
reference counter 2, causing it to leak.
pjsip_tx_data_add_ref(ack_tdata);
*/
}
if (status != PJ_SUCCESS) {