Changeset 1634 for pjproject/trunk
- Timestamp:
- Dec 17, 2007 11:40:14 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_transport.c
r1632 r1634 476 476 PJ_DEF(char*) pjsip_tx_data_get_info( pjsip_tx_data *tdata ) 477 477 { 478 /* tdata->info may be assigned by application so if it exists 479 * just return it. 480 */ 481 if (tdata->info) 482 return tdata->info; 483 478 484 if (tdata==NULL || tdata->msg==NULL) 479 485 return "NULL"; 480 481 if (tdata->info)482 return tdata->info;483 486 484 487 pj_lock_acquire(tdata->lock);
Note: See TracChangeset
for help on using the changeset viewer.