FS-640 --comment-only can you see if this patch helps, I think it should really be fixed in sofia but this shold keep it at bay
This commit is contained in:
parent
7030fa4c6a
commit
8c3651fa66
|
@ -864,7 +864,6 @@ void sofia_event_callback(nua_event_t event,
|
|||
case nua_r_unsubscribe:
|
||||
case nua_r_publish:
|
||||
case nua_i_cancel:
|
||||
case nua_r_cancel:
|
||||
case nua_i_error:
|
||||
case nua_i_active:
|
||||
case nua_i_terminated:
|
||||
|
@ -872,6 +871,13 @@ void sofia_event_callback(nua_event_t event,
|
|||
case nua_i_prack:
|
||||
case nua_r_prack:
|
||||
break;
|
||||
case nua_r_cancel:
|
||||
{
|
||||
if (status > 299 && nh) {
|
||||
nua_handle_destroy(nh);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case nua_i_ack:
|
||||
{
|
||||
if (channel && sip) {
|
||||
|
|
Loading…
Reference in New Issue