This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avfilter/vf_unsharp: Free out AVFrame on error
Fixes memleak Fixes part of CID1197065 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.3
Michael Niedermayer
8 years ago
parent
19f567208c
commit
c347b28699
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
libavfilter/vf_unsharp.c
+ 3
- 1
libavfilter/vf_unsharp.c
View File
@@ -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);
}
Write
Preview
Loading…
Cancel
Save