提交 642ad50e authored 作者: Michael Jerris's avatar Michael Jerris

Thu Aug 14 11:22:16 EDT 2008 Pekka Pessi <first.last@nokia.com>

  * outgoing_complete(): avoid assert if completing already completed request



git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@9292 d0543943-73ff-0310-b7d9-9358b9ac24b2
上级 4e9fe267
Thu Aug 14 12:01:19 EDT 2008
Thu Aug 14 12:02:14 EDT 2008
......@@ -8261,7 +8261,8 @@ int outgoing_complete(nta_outgoing_t *orq)
return outgoing_terminate(orq);
if (orq->orq_method == sip_method_invite) {
outgoing_queue(orq->orq_agent->sa_out.inv_completed, orq); /* Timer D */
if (orq->orq_queue != orq->orq_agent->sa_out.inv_completed)
outgoing_queue(orq->orq_agent->sa_out.inv_completed, orq); /* Timer D */
}
else {
outgoing_queue(orq->orq_agent->sa_out.completed, orq); /* Timer K */
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论