diff options
author | Michael Niedermayer <michael@niedermayer.cc> | 2015-11-11 00:28:28 +0100 |
---|---|---|
committer | Michael Niedermayer <michael@niedermayer.cc> | 2015-11-11 00:40:37 +0100 |
commit | 4819446eae451a6e58d6ae41faefb5529af4e783 (patch) | |
tree | 68deb6dca92b5b4b6f11e9a47453477bfc29034a /libavcodec | |
parent | f621749d1181987b3f815c6766ea66d6c5d55198 (diff) | |
download | ffmpeg-4819446eae451a6e58d6ae41faefb5529af4e783.tar.gz |
avcodec/webvttdec: Fix uninitialized use of variable "again"
Fixes CID1338336
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec')
-rw-r--r-- | libavcodec/webvttdec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavcodec/webvttdec.c b/libavcodec/webvttdec.c index fb1a422124..735458879d 100644 --- a/libavcodec/webvttdec.c +++ b/libavcodec/webvttdec.c @@ -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) { |