You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-15 14:13:16 +02:00
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 <michaelni@gmx.at>
This commit is contained in:
@@ -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) {
|
||||
|
Reference in New Issue
Block a user