[FFmpeg-devel] [PATCH 5/6] avformat/aviobuf: INT_MAX -> AV_BPRINT_SIZE_UNLIMITED

lance.lmwang at gmail.com lance.lmwang at gmail.com
Fri Jun 26 12:12:27 EEST 2020


On Fri, Jun 26, 2020 at 05:16:03AM +0200, Andreas Rheinhardt wrote:
> lance.lmwang at gmail.com:
> > From: Limin Wang <lance.lmwang at gmail.com>
> > 
> > Signed-off-by: Limin Wang <lance.lmwang at gmail.com>
> > ---
> >  libavformat/aviobuf.c | 2 +-
> >  1 file changed, 1 insertion(+), 1 deletion(-)
> > 
> > diff --git a/libavformat/aviobuf.c b/libavformat/aviobuf.c
> > index a77517d..1e32c0c 100644
> > --- a/libavformat/aviobuf.c
> > +++ b/libavformat/aviobuf.c
> > @@ -1191,7 +1191,7 @@ int avio_printf(AVIOContext *s, const char *fmt, ...)
> >      va_list ap;
> >      AVBPrint bp;
> >  
> > -    av_bprint_init(&bp, 0, INT_MAX);
> > +    av_bprint_init(&bp, 0, AV_BPRINT_SIZE_UNLIMITED);
> >      va_start(ap, fmt);
> >      av_vbprintf(&bp, fmt, ap);
> >      va_end(ap);
> > 
> This function returns an int containing either the number of bytes
> written or an error code. Ergo the number of bytes written must be in
> the range 0..INT_MAX.

Yes, please ignore the change.

> 
> - Andreas
> _______________________________________________
> ffmpeg-devel mailing list
> ffmpeg-devel at ffmpeg.org
> https://ffmpeg.org/mailman/listinfo/ffmpeg-devel
> 
> To unsubscribe, visit link above, or email
> ffmpeg-devel-request at ffmpeg.org with subject "unsubscribe".

-- 
Thanks,
Limin Wang


More information about the ffmpeg-devel mailing list