Changeset 3918 for pjproject/trunk
- Timestamp:
- Dec 20, 2011 10:27:39 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/pjsip/src/pjsua-lib/pjsua_call.c
r3908 r3918 365 365 pjsip_dlg_inc_lock(dlg); 366 366 367 /* Decrement dialog session. */ 368 pjsip_dlg_dec_session(dlg, &pjsua_var.mod); 369 367 370 if (status != PJ_SUCCESS) { 368 371 pjsua_perror(THIS_FILE, "Error initializing media channel", status); … … 723 726 goto on_error; 724 727 } 728 729 /* Temporarily increment dialog session. Without this, dialog will be 730 * prematurely destroyed if dec_lock() is called on the dialog before 731 * the invite session is created. 732 */ 733 pjsip_dlg_inc_session(dlg, &pjsua_var.mod); 725 734 726 735 /* Done. */
Note: See TracChangeset
for help on using the changeset viewer.