wmapro: error out on impossible scale factor offsets
authorLuca Barbato <lu_zero@gentoo.org>
Sat, 29 Jun 2013 00:16:50 +0000 (02:16 +0200)
committerLuca Barbato <lu_zero@gentoo.org>
Sat, 29 Jun 2013 16:11:59 +0000 (18:11 +0200)
Reported-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind
CC: libav-stable@libav.org
libavcodec/wmaprodec.c

index 302f58a..d3bd381 100644 (file)
@@ -436,7 +436,8 @@ static av_cold int decode_init(AVCodecContext *avctx)
             for (x = 0; x < num_possible_block_sizes; x++) {
                 int v = 0;
                 while (s->sfb_offsets[x][v + 1] << x < offset)
-                    ++v;
+                    if (++v >= MAX_BANDS)
+                        return AVERROR_INVALIDDATA;
                 s->sf_offsets[i][x][b] = v;
             }
         }