avformat/matroskaenc: Check ff_put_wav_header() failure

Fixes Coverity issue #1506706.

Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Signed-off-by: Paul B Mahol <onemda@gmail.com>
This commit is contained in:
Andreas Rheinhardt 2024-05-22 10:49:10 +02:00 committed by Paul B Mahol
parent 9d6fec57b8
commit c0727b2d9d

View File

@ -1250,7 +1250,9 @@ static int mkv_assemble_codecprivate(AVFormatContext *s, AVIOContext *dyn_cp,
par->codec_tag = tag; par->codec_tag = tag;
/* Same comment as for ff_put_bmp_header applies here. */ /* Same comment as for ff_put_bmp_header applies here. */
ff_put_wav_header(s, dyn_cp, par, FF_PUT_WAV_HEADER_FORCE_WAVEFORMATEX); ret = ff_put_wav_header(s, dyn_cp, par, FF_PUT_WAV_HEADER_FORCE_WAVEFORMATEX);
if (ret < 0)
return ret;
#endif #endif
} }