Module: libav Branch: master Commit: 47d029a4c1b9cd203d65abcb597d5b0209cae4f8
Author: Justin Ruggles <[email protected]> Committer: Justin Ruggles <[email protected]> Date: Sun Dec 23 13:39:31 2012 -0500 au: validate sample rate --- libavformat/au.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/libavformat/au.c b/libavformat/au.c index f055a6f..27feef7 100644 --- a/libavformat/au.c +++ b/libavformat/au.c @@ -104,6 +104,11 @@ static int au_read_header(AVFormatContext *s) return AVERROR_INVALIDDATA; } + if (rate == 0 || rate > INT_MAX) { + av_log(s, AV_LOG_ERROR, "Invalid sample rate: %u\n", rate); + return AVERROR_INVALIDDATA; + } + /* now we are ready: build format streams */ st = avformat_new_stream(s, NULL); if (!st) _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
