You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-07-11 14:30:22 +02:00
avcodec/utils: fix memleak on avcodec_open2() failure
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
@ -1477,8 +1477,10 @@ end:
|
||||
free_and_end:
|
||||
av_dict_free(&tmp);
|
||||
av_freep(&avctx->priv_data);
|
||||
if (avctx->internal)
|
||||
if (avctx->internal) {
|
||||
av_freep(&avctx->internal->pool);
|
||||
av_frame_free(&avctx->internal->to_free);
|
||||
}
|
||||
av_freep(&avctx->internal);
|
||||
avctx->codec = NULL;
|
||||
goto end;
|
||||
|
Reference in New Issue
Block a user