Changeset 5243
- Timestamp:
- Feb 19, 2016 3:16:24 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsip/sip_ua_layer.c
r5241 r5243 480 480 481 481 /* Dialog has been found. It SHOULD have the right Call-ID!! */ 482 PJ_ASSERT_ON_FAIL(pj_strcmp(&dlg->call_id->id, call_id)==0, 483 {pj_mutex_unlock(mod_ua.mutex); return NULL;}); 482 if (pj_strcmp(&dlg->call_id->id, call_id)!=0) { 483 484 PJ_LOG(6, (THIS_FILE, "Dialog not found: local and remote tags " 485 "matched but not call id")); 486 487 pj_mutex_unlock(mod_ua.mutex); 488 return NULL; 489 } 484 490 485 491 if (lock_dialog) {
Note: See TracChangeset
for help on using the changeset viewer.