Message ID | tencent_F4560F9CDAE0485AFC34EF80D6341F3EFD09@qq.com |
---|---|
State | Accepted |
Commit | 42a4c59e592dbe142c2451e0ac8132b2de574b3e |
Headers | show |
Series | [FFmpeg-devel,v2,1/3] fftools/ffmpeg_filter: fix NULL pointer dereference | expand |
Context | Check | Description |
---|---|---|
yinshiyou/make_loongarch64 | success | Make finished |
yinshiyou/make_fate_loongarch64 | success | Make fate finished |
andriy/make_x86 | success | Make finished |
andriy/make_fate_x86 | success | Make fate finished |
Quoting Zhao Zhili (2023-12-19 16:37:02) > From: Zhao Zhili <zhilizhao@tencent.com> > > --- > fftools/ffmpeg_filter.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c > index 69a49a071e..7cc7abba64 100644 > --- a/fftools/ffmpeg_filter.c > +++ b/fftools/ffmpeg_filter.c > @@ -2456,7 +2456,7 @@ static int read_frames(FilterGraph *fg, FilterGraphThread *fgt, > } > } > did_step = 1; > - }; > + } ok
diff --git a/fftools/ffmpeg_filter.c b/fftools/ffmpeg_filter.c index 69a49a071e..7cc7abba64 100644 --- a/fftools/ffmpeg_filter.c +++ b/fftools/ffmpeg_filter.c @@ -2456,7 +2456,7 @@ static int read_frames(FilterGraph *fg, FilterGraphThread *fgt, } } did_step = 1; - }; + } return (fgp->nb_outputs_done == fg->nb_outputs) ? AVERROR_EOF : 0; }
From: Zhao Zhili <zhilizhao@tencent.com> --- fftools/ffmpeg_filter.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)