Changeset 4725


Ignore:
Timestamp:
Feb 4, 2014 4:45:37 AM (10 years ago)
Author:
ming
Message:

Fixed #1731: Fix TCP transport leak problem

File:
1 edited

Legend:

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

    r4661 r4725  
    197197 
    198198    /* check again */ 
    199     if (tcp->base.is_shutdown || tcp->base.is_destroying) 
     199    if (tcp->base.is_shutdown || tcp->base.is_destroying) { 
     200        pjsip_transport_dec_ref(&tcp->base); 
    200201        return; 
     202    } 
    201203 
    202204    /* We can not destroy the transport since high level objects may 
Note: See TracChangeset for help on using the changeset viewer.