Browse Source

avfilter/af_agate: fix memleak of out frame

Fixes CID1351358

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

+ 1
- 0
libavfilter/af_agate.c View File

@@ -295,6 +295,7 @@ static int scfilter_frame(AVFilterLink *link, AVFrame *frame)
if (!in[i]) {
av_frame_free(&in[0]);
av_frame_free(&in[1]);
av_frame_free(&out);
return AVERROR(ENOMEM);
}
av_audio_fifo_read(s->fifo[i], (void **)in[i]->data, nb_samples);


Loading…
Cancel
Save