mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-24 13:56:33 +02:00
sbgdec: dont set slide to a uninitialized value
Fixed CID703833 Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
44e9d7f182
commit
e9b8523d52
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user