mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-03-17 20:17:55 +02:00
avfilter/vf_unsharp: Free out AVFrame on error
Fixes memleak Fixes part of CID1197065 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
19f567208c
commit
c347b28699
@ -258,8 +258,10 @@ static int filter_frame(AVFilterLink *link, AVFrame *in)
|
||||
end:
|
||||
av_frame_free(&in);
|
||||
|
||||
if (ret < 0)
|
||||
if (ret < 0) {
|
||||
av_frame_free(&out);
|
||||
return ret;
|
||||
}
|
||||
return ff_filter_frame(outlink, out);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user