提交 045b7640 authored 作者: Brian West's avatar Brian West

Remove duplicated code

上级 e809b41d
...@@ -488,7 +488,6 @@ static switch_status_t channel_on_destroy(switch_core_session_t *session) ...@@ -488,7 +488,6 @@ static switch_status_t channel_on_destroy(switch_core_session_t *session)
{ {
switch_channel_t *channel = NULL; switch_channel_t *channel = NULL;
loopback_private_t *tech_pvt = NULL; loopback_private_t *tech_pvt = NULL;
void *pop;
switch_event_t *vars; switch_event_t *vars;
channel = switch_core_session_get_channel(session); channel = switch_core_session_get_channel(session);
...@@ -516,10 +515,7 @@ static switch_status_t channel_on_destroy(switch_core_session_t *session) ...@@ -516,10 +515,7 @@ static switch_status_t channel_on_destroy(switch_core_session_t *session)
switch_frame_free(&tech_pvt->write_frame); switch_frame_free(&tech_pvt->write_frame);
} }
while (switch_queue_trypop(tech_pvt->frame_queue, &pop) == SWITCH_STATUS_SUCCESS && pop) { clear_queue(tech_pvt);
switch_frame_t *frame = (switch_frame_t *) pop;
switch_frame_free(&frame);
}
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论