From 590863876d1478547640304a31c15809c3618090 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Sun, 10 Jan 2016 19:29:39 +0100 Subject: [PATCH] avcodec/aacdec_template: Check id_map Fixes index out of bounds error Fixes: aac_index_out_of_bounds.wmv Found-by: Piotr Bandurski Signed-off-by: Michael Niedermayer --- libavcodec/aacdec_template.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libavcodec/aacdec_template.c b/libavcodec/aacdec_template.c index d819958d95..6bc94c879a 100644 --- a/libavcodec/aacdec_template.c +++ b/libavcodec/aacdec_template.c @@ -451,6 +451,10 @@ static int output_configure(AACContext *ac, int type = layout_map[i][0]; int id = layout_map[i][1]; id_map[type][id] = type_counts[type]++; + if (id_map[type][id] >= MAX_ELEM_ID) { + avpriv_request_sample(ac->avctx, "Remapped id too large\n"); + return AVERROR_PATCHWELCOME; + } } // Try to sniff a reasonable channel order, otherwise output the // channels in the order the PCE declared them.