You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
avformat/argo_asf: Fix order of operations in error check in argo_asf_write_trailer()
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
@@ -423,7 +423,7 @@ static int argo_asf_write_trailer(AVFormatContext *s)
|
|||||||
ArgoASFMuxContext *ctx = s->priv_data;
|
ArgoASFMuxContext *ctx = s->priv_data;
|
||||||
int64_t ret;
|
int64_t ret;
|
||||||
|
|
||||||
if ((ret = avio_seek(s->pb, ASF_FILE_HEADER_SIZE, SEEK_SET) < 0))
|
if ((ret = avio_seek(s->pb, ASF_FILE_HEADER_SIZE, SEEK_SET)) < 0)
|
||||||
return ret;
|
return ret;
|
||||||
|
|
||||||
avio_wl32(s->pb, (uint32_t)ctx->nb_blocks);
|
avio_wl32(s->pb, (uint32_t)ctx->nb_blocks);
|
||||||
|
Reference in New Issue
Block a user