提交 0f4ecab5 authored 作者: Anthony Minessale's avatar Anthony Minessale

FS-4481 --resolve seg is fixed but just utf-8 will not work. you need…

FS-4481 --resolve seg is fixed but just utf-8 will not work. you need type/subtype format like text/utf-8
上级 3c82033e
......@@ -748,7 +748,8 @@ void sofia_handle_sip_r_message(int status, sofia_profile_t *profile, nua_handle
const char *call_id;
int *mstatus;
if (!sip && sip->sip_call_id) {
if (!(sip && sip->sip_call_id)) {
nua_handle_destroy(nh);
return;
}
......
......@@ -357,7 +357,7 @@ switch_status_t sofia_presence_chat_send(switch_event_t *message_event)
if (is_blocking) {
sanity = 200;
while(!mstatus && --sanity) {
while(!mstatus && --sanity && !msg_nh->nh_destroyed) {
switch_yield(100000);
}
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论