From a645049bd8e9fa38860d44902fcee55867f73140 Mon Sep 17 00:00:00 2001 From: Michael Niedermayer Date: Tue, 22 May 2012 17:15:07 +0200 Subject: [PATCH] swr: check count argument of realloc_audio() Signed-off-by: Michael Niedermayer --- libswresample/swresample.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/libswresample/swresample.c b/libswresample/swresample.c index 60706d3def..732dae7092 100644 --- a/libswresample/swresample.c +++ b/libswresample/swresample.c @@ -344,6 +344,9 @@ static int realloc_audio(AudioData *a, int count){ int i, countb; AudioData old; + if(count < 0 || count > INT_MAX/2/a->bps/a->ch_count) + return AVERROR(EINVAL); + if(a->count >= count) return 0;