mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-04-20 02:04:54 +00:00
FS-10100: [mod_av] fix crash on allocation error and other error cases opening a file
This commit is contained in:
parent
35b3e9a6a0
commit
0a3dd43e2f
@ -1857,7 +1857,11 @@ static switch_status_t av_file_open(switch_file_handle_t *handle, const char *pa
|
||||
|
||||
end:
|
||||
|
||||
if (context && context->fc) {
|
||||
if (!context) {
|
||||
return status;
|
||||
}
|
||||
|
||||
if (context->fc) {
|
||||
mod_avformat_destroy_output_context(context);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user