Ignore:
Timestamp:
Dec 17, 2007 11:40:14 AM (16 years ago)
Author:
bennylp
Message:

Reverted back changes in r1631

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip/sip_transport.c

    r1632 r1634  
    476476PJ_DEF(char*) pjsip_tx_data_get_info( pjsip_tx_data *tdata ) 
    477477{ 
     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 
    478484    if (tdata==NULL || tdata->msg==NULL) 
    479485        return "NULL"; 
    480  
    481     if (tdata->info) 
    482         return tdata->info; 
    483486 
    484487    pj_lock_acquire(tdata->lock); 
Note: See TracChangeset for help on using the changeset viewer.