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_tcp.c

    r4262 r4281  
    690690                                    &size, 0); 
    691691        if (status != PJ_EPENDING) { 
     692            pj_lock_release(tcp->base.lock); 
    692693            on_data_sent(tcp->asock, op_key, size); 
     694            pj_lock_acquire(tcp->base.lock); 
    693695        } 
    694696 
Note: See TracChangeset for help on using the changeset viewer.