mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 11:19:55 +00:00
avfilter/vf_thumbnail: fix possible crash on error
This commit is contained in:
parent
32bc0e0444
commit
e63a66416f
@ -162,7 +162,7 @@ static av_cold void uninit(AVFilterContext *ctx)
|
||||
{
|
||||
int i;
|
||||
ThumbContext *s = ctx->priv;
|
||||
for (i = 0; i < s->n_frames && s->frames[i].buf; i++)
|
||||
for (i = 0; i < s->n_frames && s->frames && s->frames[i].buf; i++)
|
||||
av_frame_free(&s->frames[i].buf);
|
||||
av_freep(&s->frames);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user