Ignore:
Timestamp:
Mar 29, 2013 4:55:43 AM (10 years ago)
Author:
ming
Message:

Re #1630 (misc): Added missing destroy of mutexes. This may cause failure to recreate the mutexes in some platforms (such as BB10).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • pjproject/trunk/pjsip/src/pjsua-lib/pjsua_core.c

    r4370 r4454  
    16371637        pjsua_var.mutex = NULL; 
    16381638    } 
     1639     
     1640    if (pjsua_var.timer_mutex) { 
     1641        pj_mutex_destroy(pjsua_var.timer_mutex); 
     1642        pjsua_var.timer_mutex = NULL; 
     1643    } 
    16391644 
    16401645    /* Destroy pool and pool factory. */ 
Note: See TracChangeset for help on using the changeset viewer.