Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2015-11-11 02:28:28 +0300
committerMichael Niedermayer <michael@niedermayer.cc>2015-11-11 02:40:37 +0300
commit4819446eae451a6e58d6ae41faefb5529af4e783 (patch)
tree68deb6dca92b5b4b6f11e9a47453477bfc29034a /libavcodec/webvttdec.c
parentf621749d1181987b3f815c6766ea66d6c5d55198 (diff)
avcodec/webvttdec: Fix uninitialized use of variable "again"
Fixes CID1338336 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'libavcodec/webvttdec.c')
-rw-r--r--libavcodec/webvttdec.c2
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) {