mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avfilter/vf_pullup: zero freed memory for saftey
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
5b0ce5d4e3
commit
a44409e692
@ -137,6 +137,7 @@ static void free_field_queue(PullupField *head)
|
||||
av_free(f->combs);
|
||||
av_free(f->vars);
|
||||
next = f->next;
|
||||
memset(f, 0, sizeof(*f));
|
||||
av_free(f);
|
||||
f = next;
|
||||
} while (f != head);
|
||||
|
Loading…
Reference in New Issue
Block a user