Ignore:
Timestamp:
Oct 8, 2012 8:13:12 AM (12 years ago)
Author:
ming
Message:

Fixed #1592: Multithreading issues in PJSIP (fixing pj_timer_heap_poll() and lock order inversion in tcp/tls transport)

File:
1 edited

Legend:

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

    r4262 r4281  
    715715 
    716716        if (status != PJ_EPENDING) { 
     717            pj_lock_release(tls->base.lock); 
    717718            on_data_sent(tls->ssock, op_key, size); 
     719            pj_lock_acquire(tls->base.lock); 
    718720        } 
    719721    } 
Note: See TracChangeset for help on using the changeset viewer.