lavfi/af_adeclick: fix double free after ff_filter_frame fail

ff_filter_frame fail will free the frame, so we just returen after this
function fail.

Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Jun Zhao <barryjzhao@tencent.com>
This commit is contained in:
Jun Zhao 2019-08-19 12:54:27 +08:00
parent 3708a2a909
commit df6876d691
1 changed files with 1 additions and 1 deletions

View File

@ -592,7 +592,7 @@ static int filter_frame(AVFilterLink *inlink)
ret = ff_filter_frame(outlink, out);
if (ret < 0)
goto fail;
return ret;
if (s->samples_left > 0) {
s->samples_left -= s->hop_size;