Changeset 4529
- Timestamp:
- May 30, 2013 8:32:07 AM (11 years ago)
- Location:
- pjproject/trunk/pjsip/src/pjsip
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_endpoint.c
r4453 r4529 559 559 endpt->mutex = NULL; 560 560 } 561 deinit_sip_parser(); 561 562 if (endpt->mod_mutex) { 562 563 pj_rwmutex_destroy(endpt->mod_mutex); -
pjproject/trunk/pjsip/src/pjsip/sip_transport.c
r4504 r4529 1219 1219 #if defined(PJ_DEBUG) && PJ_DEBUG!=0 1220 1220 status = pj_atomic_create(pool, 0, &mgr->tdata_counter); 1221 if (status != PJ_SUCCESS) 1222 return status; 1221 if (status != PJ_SUCCESS) { 1222 pj_lock_destroy(mgr->lock); 1223 return status; 1224 } 1223 1225 #endif 1224 1226 1225 1227 /* Set transport state callback */ 1226 status = pjsip_tpmgr_set_state_cb(mgr, &tp_state_callback); 1227 if (status != PJ_SUCCESS) 1228 return status; 1228 pjsip_tpmgr_set_state_cb(mgr, &tp_state_callback); 1229 1229 1230 1230 PJ_LOG(5, (THIS_FILE, "Transport manager created."));
Note: See TracChangeset
for help on using the changeset viewer.