mirror of https://git.ffmpeg.org/ffmpeg.git
avfilter/af_agate: fix memleak of out frame
Fixes CID1351358 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
253209ac44
commit
8e46c7c1e7
|
@ -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…
Reference in New Issue