提交 d6c2b9a2 authored 作者: Anthony Minessale's avatar Anthony Minessale

FS-5085 the last change helped weed out the real bug which is this commit

上级 e5754ab3
...@@ -445,8 +445,8 @@ static switch_status_t channel_on_execute(switch_core_session_t *session) ...@@ -445,8 +445,8 @@ static switch_status_t channel_on_execute(switch_core_session_t *session)
} }
if (bow) { if (bow) {
switch_core_session_t *other_session; switch_core_session_t *other_session = NULL;
const char *other_uuid; const char *other_uuid = NULL;
if ((find_non_loopback_bridge(tech_pvt->other_session, &other_session, &other_uuid) == SWITCH_STATUS_SUCCESS)) { if ((find_non_loopback_bridge(tech_pvt->other_session, &other_session, &other_uuid) == SWITCH_STATUS_SUCCESS)) {
switch_caller_extension_t *extension; switch_caller_extension_t *extension;
...@@ -740,7 +740,7 @@ static switch_status_t find_non_loopback_bridge(switch_core_session_t *session, ...@@ -740,7 +740,7 @@ static switch_status_t find_non_loopback_bridge(switch_core_session_t *session,
{ {
switch_channel_t *channel = switch_core_session_get_channel(session); switch_channel_t *channel = switch_core_session_get_channel(session);
const char *a_uuid = NULL; const char *a_uuid = NULL;
switch_core_session_t *sp; switch_core_session_t *sp = NULL;
*br_session = NULL; *br_session = NULL;
*br_uuid = NULL; *br_uuid = NULL;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论