On Thu, May 23, 2019 at 06:06:42PM +0200, Moritz Barsnick wrote: > The string matching function's return value was evaluated incorrectly. > > Fixes trac #7920. > > Signed-off-by: Moritz Barsnick <barsn...@gmx.net> > --- > libavformat/mpjpegdec.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/libavformat/mpjpegdec.c b/libavformat/mpjpegdec.c > index e653b5cc93..a23469c0ec 100644 > --- a/libavformat/mpjpegdec.c > +++ b/libavformat/mpjpegdec.c > @@ -271,7 +271,7 @@ static char* mpjpeg_get_boundary(AVIOContext* pb) > while (av_isspace(*start)) > start++; > > - if (!av_stristart(start, "boundary=", &start)) { > + if (av_stristart(start, "boundary=", &start)) { > end = strchr(start, ';'); > if (end) > len = end - start - 1;
LGTM a testcase in fate would be good thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB No great genius has ever existed without some touch of madness. -- Aristotle
signature.asc
Description: PGP signature
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".