From 731f7eaaade4c0cf91f8008cc30c0342caa64df1 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Wed, 7 Aug 2013 16:50:59 +0200 Subject: [PATCH] ff_flac_parse_picture: assert that len is within the array The check that gurantees this isnt recognized by coverity for example Signed-off-by: Michael Niedermayer --- libavformat/flacdec_picture.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libavformat/flacdec_picture.c b/libavformat/flacdec_picture.c index 3c4fa6e6f8..1b0bea2dd0 100644 --- a/libavformat/flacdec_picture.c +++ b/libavformat/flacdec_picture.c @@ -19,6 +19,7 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include "libavutil/avassert.h" #include "avformat.h" #include "flacdec.h" #include "id3v2.h" @@ -59,6 +60,7 @@ int ff_flac_parse_picture(AVFormatContext *s, uint8_t *buf, int buf_size) ret = AVERROR_INVALIDDATA; goto fail; } + av_assert0(len < sizeof(mimetype)); mimetype[len] = 0; while (mime->id != AV_CODEC_ID_NONE) {