Commit 4819446e authored by Michael Niedermayer's avatar Michael Niedermayer

avcodec/webvttdec: Fix uninitialized use of variable "again"

Fixes CID1338336
Signed-off-by: 's avatarMichael Niedermayer <michael@niedermayer.cc>
parent f621749d
......@@ -44,7 +44,7 @@ static const struct {
static int webvtt_event_to_ass(AVBPrint *buf, const char *p)
{
int i, again, skip = 0;
int i, again = 0, skip = 0;
while (*p) {
......
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