diff --git a/libavformat/flvdec.c b/libavformat/flvdec.c index e4b40a195c..fca6f82f5c 100644 --- a/libavformat/flvdec.c +++ b/libavformat/flvdec.c @@ -875,6 +875,8 @@ static int amf_skip_tag(AVIOContext *pb, AMFDataType type, int depth) parse_name = 0; case AMF_DATA_TYPE_MIXEDARRAY: nb = avio_rb32(pb); + if (nb < 0) + return AVERROR_INVALIDDATA; case AMF_DATA_TYPE_OBJECT: while(!pb->eof_reached && (nb-- > 0 || type != AMF_DATA_TYPE_ARRAY)) { if (parse_name) {