Commit 4750b05d authored by Anton Khirnov's avatar Anton Khirnov

af_join: do not leak input frames.

parent c2b9bd97
...@@ -487,7 +487,8 @@ static int join_request_frame(AVFilterLink *outlink) ...@@ -487,7 +487,8 @@ static int join_request_frame(AVFilterLink *outlink)
ret = ff_filter_frame(outlink, frame); ret = ff_filter_frame(outlink, frame);
memset(s->input_frames, 0, sizeof(*s->input_frames) * ctx->nb_inputs); for (i = 0; i < ctx->nb_inputs; i++)
av_frame_free(&s->input_frames[i]);
return ret; return ret;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment