Changeset 2128


Ignore:
Timestamp:
Jul 12, 2008 9:22:35 PM (16 years ago)
Author:
bennylp
Message:

Related to ticket #529: ignore transaction terminate request if transaction state is already DESTROYED

File:
1 edited

Legend:

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

    r2127 r2128  
    14591459    PJ_ASSERT_RETURN(code >= 200, PJ_EINVAL); 
    14601460 
    1461     if (tsx->state == PJSIP_TSX_STATE_TERMINATED) 
     1461    if (tsx->state >= PJSIP_TSX_STATE_TERMINATED) 
    14621462        return PJ_SUCCESS; 
    14631463 
Note: See TracChangeset for help on using the changeset viewer.