Commit 05dd5368 authored by Michael Niedermayer's avatar Michael Niedermayer

avformat/nutdec: always initialize event_flags

Fixes: CID1231990
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 7caacc50
......@@ -484,7 +484,7 @@ static int decode_info_header(NUTContext *nut)
int64_t value, end;
char name[256], str_value[1024], type_str[256];
const char *type;
int *event_flags;
int *event_flags = NULL;
AVChapter *chapter = NULL;
AVStream *st = NULL;
AVDictionary **metadata = NULL;
......@@ -560,7 +560,8 @@ static int decode_info_header(NUTContext *nut)
if (metadata && av_strcasecmp(name, "Uses") &&
av_strcasecmp(name, "Depends") && av_strcasecmp(name, "Replaces")) {
*event_flags |= metadata_flag;
if (event_flags)
*event_flags |= metadata_flag;
av_dict_set(metadata, name, str_value, 0);
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment