FS-4079 new patch, please test

This commit is contained in:
Anthony Minessale 2012-08-13 13:48:06 -05:00
parent aad07c6243
commit 4ef9b3fe56
1 changed files with 4 additions and 1 deletions

View File

@ -969,6 +969,7 @@ static void our_sofia_event_callback(nua_event_t event,
int locked = 0; int locked = 0;
int check_destroy = 1; int check_destroy = 1;
#if 0
if (sofia_private && sofia_private->is_call && sofia_private->de) { if (sofia_private && sofia_private->is_call && sofia_private->de) {
sofia_dispatch_event_t *qde = sofia_private->de; sofia_dispatch_event_t *qde = sofia_private->de;
sofia_private->de = NULL; sofia_private->de = NULL;
@ -980,6 +981,7 @@ static void our_sofia_event_callback(nua_event_t event,
sofia_process_dispatch_event(&qde); sofia_process_dispatch_event(&qde);
} }
} }
#endif
profile->last_sip_event = switch_time_now(); profile->last_sip_event = switch_time_now();
@ -1704,8 +1706,9 @@ void sofia_event_callback(nua_event_t event,
memset(sofia_private, 0, sizeof(*sofia_private)); memset(sofia_private, 0, sizeof(*sofia_private));
sofia_private->is_call++; sofia_private->is_call++;
sofia_private->is_static++; sofia_private->is_static++;
sofia_private->de = de; //sofia_private->de = de;
nua_handle_bind(nh, sofia_private); nua_handle_bind(nh, sofia_private);
sofia_process_dispatch_event(&de);
return; return;
} }