On Thu, Jun 15, 2017 at 10:21:00AM +0200, Nicolas George wrote: > Le septidi 17 prairial, an CCXXV, Daniel Kucera a écrit : > > Signed-off-by: Daniel Kucera <daniel.kuc...@gmail.com> > > --- > > libavformat/file.c | 2 ++ > > 1 file changed, 2 insertions(+) > > > > diff --git a/libavformat/file.c b/libavformat/file.c > > index 264542a36a..1fb83851c0 100644 > > --- a/libavformat/file.c > > +++ b/libavformat/file.c > > @@ -112,6 +112,8 @@ static int file_read(URLContext *h, unsigned char *buf, > > int size) > > ret = read(c->fd, buf, size); > > if (ret == 0 && c->follow) > > return AVERROR(EAGAIN); > > + if (ret == 0) > > + return AVERROR_EOF; > > return (ret == -1) ? AVERROR(errno) : ret; > > } > > > > LGTM, but I do not maintain that file.
applied thx [...] -- Michael GnuPG fingerprint: 9FF2128B147EF6730BADF133611EC787040B0FAB During times of universal deceit, telling the truth becomes a revolutionary act. -- George Orwell
signature.asc
Description: Digital signature
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-devel