mirror of https://git.ffmpeg.org/ffmpeg.git
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:
parent
c182c70658
commit
c8c12fb5d6
|
@ -423,7 +423,7 @@ static int argo_asf_write_trailer(AVFormatContext *s)
|
|||
ArgoASFMuxContext *ctx = s->priv_data;
|
||||
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;
|
||||
|
||||
avio_wl32(s->pb, (uint32_t)ctx->nb_blocks);
|
||||
|
|
Loading…
Reference in New Issue