You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02: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:
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user