mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-03 05:10:03 +02:00
avformat/mlvdec: read_string() received unsigned size, make the argument unsigned
Fixes: infinite loop
Fixes: mlv-timeout-e3b8cab9835edecad6823baa057e029671329d04
Found-by: Paul Ch <paulcher@icloud.com>
Reviewed-by: Paul B Mahol <onemda@gmail.com>
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
(cherry picked from commit 1e71cb2c8e
)
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
parent
17c0347977
commit
ff5196a98a
@ -77,7 +77,7 @@ static int check_file_header(AVIOContext *pb, uint64_t guid)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void read_string(AVFormatContext *avctx, AVIOContext *pb, const char *tag, int size)
|
||||
static void read_string(AVFormatContext *avctx, AVIOContext *pb, const char *tag, unsigned size)
|
||||
{
|
||||
char * value = av_malloc(size + 1);
|
||||
if (!value) {
|
||||
|
Loading…
Reference in New Issue
Block a user