mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-02 02:30:58 +00:00
avcodec/bsf: check that AVBSFInternal was allocated before dereferencing it
This can happen when av_bsf_free() is called on av_bsf_alloc() failure. Reviewed-by: Paul B Mahol <onemda@gmail.com> Signed-off-by: James Almer <jamrial@gmail.com>
This commit is contained in:
parent
eaf3c4b8bf
commit
d889ae3396
@ -47,7 +47,8 @@ void av_bsf_free(AVBSFContext **pctx)
|
|||||||
|
|
||||||
av_opt_free(ctx);
|
av_opt_free(ctx);
|
||||||
|
|
||||||
av_packet_free(&ctx->internal->buffer_pkt);
|
if (ctx->internal)
|
||||||
|
av_packet_free(&ctx->internal->buffer_pkt);
|
||||||
av_freep(&ctx->internal);
|
av_freep(&ctx->internal);
|
||||||
av_freep(&ctx->priv_data);
|
av_freep(&ctx->priv_data);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user