This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
FFmpeg
mirror of
https://github.com/falkTX/FFmpeg.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
338
Wiki
Activity
Browse Source
avcodec/webvttdec: Fix uninitialized use of variable "again"
Fixes CID1338336 Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tags/n3.0
Michael Niedermayer
10 years ago
parent
f621749d11
commit
4819446eae
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavcodec/webvttdec.c
+ 1
- 1
libavcodec/webvttdec.c
View File
@@ -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) {
Write
Preview
Loading…
Cancel
Save