mirror of
https://mirror.skon.top/https://github.com/FFmpeg/FFmpeg
synced 2026-04-20 21:00:41 +08:00
avformat/argo_cvg:: Fix order of operations in error check in argo_cvg_write_trailer()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 70a1024290)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -350,7 +350,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);
|
||||
|
||||
Reference in New Issue
Block a user