提交 0a3dd43e authored 作者: Mike Jerris's avatar Mike Jerris

FS-10100: [mod_av] fix crash on allocation error and other error cases opening a file

上级 35b3e9a6
...@@ -1857,7 +1857,11 @@ static switch_status_t av_file_open(switch_file_handle_t *handle, const char *pa ...@@ -1857,7 +1857,11 @@ static switch_status_t av_file_open(switch_file_handle_t *handle, const char *pa
end: end:
if (context && context->fc) { if (!context) {
return status;
}
if (context->fc) {
mod_avformat_destroy_output_context(context); mod_avformat_destroy_output_context(context);
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论