Commit e9b8523d authored by Nicolas George's avatar Nicolas George Committed by Michael Niedermayer

sbgdec: dont set slide to a uninitialized value

Fixed CID703833
Signed-off-by: 's avatarMichael Niedermayer <michaelni@gmx.at>
parent 44e9d7f1
......@@ -488,7 +488,7 @@ static int parse_timestamp(struct sbg_parser *p,
static int parse_fade(struct sbg_parser *p, struct sbg_fade *fr)
{
struct sbg_fade f;
struct sbg_fade f = {0};
if (lex_char(p, '<'))
f.in = SBG_FADE_SILENCE;
......
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