Changeset 1250


Ignore:
Timestamp:
May 4, 2007 10:49:54 AM (17 years ago)
Author:
bennylp
Message:

Fixed more bugs caused by ticket #221

File:
1 edited

Legend:

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

    r1246 r1250  
    25172517        pjsip_tx_data *ack_tdata = NULL; 
    25182518 
     2519        /* Cancel retransmission timer */ 
     2520        if (tsx->retransmit_timer.id != 0) { 
     2521            pjsip_endpt_cancel_timer(tsx->endpt, &tsx->retransmit_timer); 
     2522            tsx->retransmit_timer.id = 0; 
     2523        } 
     2524 
    25192525        /* Stop timer B. */ 
     2526        tsx->timeout_timer.id = 0; 
    25202527        pjsip_endpt_cancel_timer( tsx->endpt, &tsx->timeout_timer ); 
    25212528 
Note: See TracChangeset for help on using the changeset viewer.