mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2024-12-28 02:12:28 +00:00
libfdk-aacdec: Fix a boundary check
This avoids potential out of bounds writes, with potential future versions of the library. Bug-Id: CID 1254945 CC: libav-stable@libav.org Signed-off-by: Martin Storsjö <martin@martin.st>
This commit is contained in:
parent
2c3f29c489
commit
c7921a4804
@ -100,7 +100,7 @@ static int get_stream_info(AVCodecContext *avctx)
|
||||
|
||||
for (i = 0; i < info->numChannels; i++) {
|
||||
AUDIO_CHANNEL_TYPE ctype = info->pChannelType[i];
|
||||
if (ctype <= ACT_NONE || ctype > FF_ARRAY_ELEMS(channel_counts)) {
|
||||
if (ctype <= ACT_NONE || ctype >= FF_ARRAY_ELEMS(channel_counts)) {
|
||||
av_log(avctx, AV_LOG_WARNING, "unknown channel type\n");
|
||||
break;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user