- Timestamp:
- Oct 16, 2006 9:07:19 PM (18 years ago)
- Location:
- pjproject/trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip-apps/src/pjsua/pjsua_app.c
r753 r777 1763 1763 if (status != PJ_SUCCESS) { 1764 1764 pjsua_perror(THIS_FILE, "Unable to send request", status); 1765 pjsip_tx_data_dec_ref(tdata);1766 1765 return; 1767 1766 } -
pjproject/trunk/pjsip-apps/src/samples/pjsip-perf.c
r676 r777 1403 1403 //should have been reported by tsx_completion_cb(). 1404 1404 //report_completion(701); 1405 pjsip_tx_data_dec_ref(tdata); 1405 //No longer necessary (r777) 1406 //pjsip_tx_data_dec_ref(tdata); 1406 1407 } 1407 1408 return status; -
pjproject/trunk/pjsip/src/pjsip/sip_util_statefull.c
r448 r777 107 107 PJ_TODO(IMPLEMENT_TIMEOUT_FOR_SEND_REQUEST); 108 108 109 return pjsip_tsx_send_msg(tsx, NULL); 109 status = pjsip_tsx_send_msg(tsx, NULL); 110 if (status != PJ_SUCCESS) 111 pjsip_tx_data_dec_ref(tdata); 112 113 return status; 110 114 } 111 115
Note: See TracChangeset
for help on using the changeset viewer.