[FFmpeg-cvslog] avformat/argo_cvg:: Fix order of operations in error check in argo_cvg_write_trailer()

Michael Niedermayer git at videolan.org
Fri Feb 25 23:30:59 EET 2022


ffmpeg | branch: master | Michael Niedermayer <michael at niedermayer.cc> | Mon Feb 14 20:24:07 2022 +0100| [70a1024290b7a6a6d544a16dc80daea9bfce0b13] | committer: Michael Niedermayer

avformat/argo_cvg:: Fix order of operations in error check in argo_cvg_write_trailer()

Signed-off-by: Michael Niedermayer <michael at niedermayer.cc>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=70a1024290b7a6a6d544a16dc80daea9bfce0b13
---

 libavformat/argo_cvg.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libavformat/argo_cvg.c b/libavformat/argo_cvg.c
index f59e93496f..dfdf126c17 100644
--- a/libavformat/argo_cvg.c
+++ b/libavformat/argo_cvg.c
@@ -345,7 +345,7 @@ static int argo_cvg_write_trailer(AVFormatContext *s)
 
     avio_wl32(s->pb, ctx->checksum);
 
-    if ((ret = avio_seek(s->pb, 0, SEEK_SET) < 0))
+    if ((ret = avio_seek(s->pb, 0, SEEK_SET)) < 0)
         return ret;
 
     avio_wl32(s->pb, (uint32_t)ctx->size);



More information about the ffmpeg-cvslog mailing list