mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-23 19:30:05 +00:00
mvdec: check var_read_string() return value
Prevent null pointer dereference Found-by: Mateusz "j00ru" Jurczyk and Gynvael Coldwind Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
362271d72f
commit
5de286ef88
@ -158,6 +158,8 @@ static int parse_video_var(AVFormatContext *avctx, AVStream *st, const char *nam
|
||||
st->nb_frames = st->duration = var_read_int(pb, size);
|
||||
} else if (!strcmp(name, "COMPRESSION")) {
|
||||
char * str = var_read_string(pb, size);
|
||||
if (!str)
|
||||
return AVERROR_INVALIDDATA;
|
||||
if (!strcmp(str, "1")) {
|
||||
st->codec->codec_id = AV_CODEC_ID_MVC1;
|
||||
} else if (!strcmp(str, "2")) {
|
||||
|
Loading…
Reference in New Issue
Block a user