Changeset 3924 for pjproject


Ignore:
Timestamp:
Dec 26, 2011 9:21:50 AM (12 years ago)
Author:
bennylp
Message:

Fixed #1432: Removed assertion in transaction when event is received in DESTROYED state (thanks Yariv Trabelsi for the report)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/branches/1.x/pjsip/src/pjsip/sip_transaction.c

    r3881 r3924  
    32233223    PJ_UNUSED_ARG(tsx); 
    32243224    PJ_UNUSED_ARG(event); 
    3225     pj_assert(!"Not expecting any events!!"); 
    3226     return PJ_EBUG; 
    3227 } 
    3228  
     3225 
     3226    // See https://trac.pjsip.org/repos/ticket/1432 
     3227    //pj_assert(!"Not expecting any events!!"); 
     3228 
     3229    return PJ_EIGNORED; 
     3230} 
     3231 
Note: See TracChangeset for help on using the changeset viewer.