Ignore:
Timestamp:
Mar 30, 2012 7:53:36 AM (12 years ago)
Author:
bennylp
Message:

Re #1474: merged r3879:3885

File:
1 edited

Legend:

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

    r3999 r4001  
    32403240{ 
    32413241    pj_assert(tsx->state == PJSIP_TSX_STATE_TERMINATED); 
    3242     pj_assert(event->type == PJSIP_EVENT_TIMER); 
     3242 
     3243    /* Ignore events other than timer. This used to be an assertion but 
     3244     * events may genuinely arrive at this state. 
     3245     */ 
     3246    if (event->type != PJSIP_EVENT_TIMER) { 
     3247        return PJ_EIGNORED; 
     3248    } 
    32433249 
    32443250    /* Destroy this transaction */ 
Note: See TracChangeset for help on using the changeset viewer.