Changeset 2889


Ignore:
Timestamp:
Aug 17, 2009 12:59:21 PM (15 years ago)
Author:
nanang
Message:

Ticket #833: Fixed bug in session timer, timer callback shouldn't perform re-INVITE or BYE when there is pending INVITE.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsip-ua/sip_timer.c

    r2870 r2889  
    332332 
    333333    PJ_UNUSED_ARG(timer_heap); 
     334 
     335    /* Must NOT have a pending INVITE transaction */ 
     336    if (inv->invite_tsx != NULL) 
     337        return; 
    334338 
    335339    /* Lock dialog. */ 
Note: See TracChangeset for help on using the changeset viewer.