Andreas Rheinhardt: > Fixes Coverity issue #1506706. > > Signed-off-by: Andreas Rheinhardt <andreas.rheinha...@outlook.com> > --- > libavformat/matroskaenc.c | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/libavformat/matroskaenc.c b/libavformat/matroskaenc.c > index 63bae9fe1c..76c542d50b 100644 > --- a/libavformat/matroskaenc.c > +++ b/libavformat/matroskaenc.c > @@ -1250,7 +1250,9 @@ static int mkv_assemble_codecprivate(AVFormatContext > *s, AVIOContext *dyn_cp, > par->codec_tag = tag; > > /* 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 > } >
Will apply the rest of this patchset tomorrow unless there are objections. - Andreas _______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".