Changeset 3188
- Timestamp:
- Jun 1, 2010 2:52:18 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_transaction.c
r3138 r3188 558 558 { 559 559 pj_mutex_unlock(mod_tsx_layer.mutex); 560 PJ_LOG(2,(THIS_FILE, "Unable to register transaction (key exists)")); 560 PJ_LOG(2,(THIS_FILE, 561 "Unable to register %.*s transaction (key exists)", 562 (int)tsx->method.name.slen, 563 tsx->method.name.ptr)); 561 564 return PJ_EEXISTS; 562 565 } … … 1274 1277 status = pjsip_get_request_dest(tdata, &dst_info); 1275 1278 if (status != PJ_SUCCESS) { 1279 unlock_tsx(tsx, &lck); 1276 1280 tsx_destroy(tsx); 1277 1281 return status; … … 1282 1286 status = mod_tsx_layer_register_tsx(tsx); 1283 1287 if (status != PJ_SUCCESS) { 1288 /* The assertion is removed by #1090: 1284 1289 pj_assert(!"Bug in branch_param generator (i.e. not unique)"); 1290 */ 1291 unlock_tsx(tsx, &lck); 1285 1292 tsx_destroy(tsx); 1286 1293 return status;
Note: See TracChangeset
for help on using the changeset viewer.