Browse Source

avfilter/vf_ciescope: Free out AVFrame on error

Fixes memleak
Fixes part of CID1197065

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.3
Michael Niedermayer 9 years ago
parent
commit
3edbc2408b
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      libavfilter/vf_ciescope.c

+ 3
- 1
libavfilter/vf_ciescope.c View File

@@ -1369,8 +1369,10 @@ static int filter_frame(AVFilterLink *inlink, AVFrame *in)

if (!s->background) {
ret = draw_background(ctx);
if (ret < 0)
if (ret < 0) {
av_frame_free(&out);
return ret;
}
s->background = 1;
}
for (y = 0; y < outlink->h; y++) {


Loading…
Cancel
Save