mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2024-12-23 12:43:46 +02:00
avformat/mvdec: Check size for validity in var_read_string()
Fixes out of array read Fixes: asan_heap-oob_49b1e5_12_011.movie Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
e70312dfc2
commit
86e5749285
@ -57,7 +57,12 @@ static int mv_probe(AVProbeData *p)
|
||||
static char *var_read_string(AVIOContext *pb, int size)
|
||||
{
|
||||
int n;
|
||||
char *str = av_malloc(size + 1);
|
||||
char *str;
|
||||
|
||||
if (size < 0 || size == INT_MAX)
|
||||
return NULL;
|
||||
|
||||
str = av_malloc(size + 1);
|
||||
if (!str)
|
||||
return NULL;
|
||||
n = avio_get_str(pb, size, str, size + 1);
|
||||
|
Loading…
Reference in New Issue
Block a user