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
lavf/mpeg: Initialize a stack variable used by memcmp().
Silence a valgrind warning. Fixes ticket
#6160
.
tags/n3.3
Carl Eugen Hoyos
8 years ago
parent
e8a3498f24
commit
a5c1c7a8b3
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
libavformat/mpeg.c
+ 1
- 1
libavformat/mpeg.c
View File
@@ -138,7 +138,7 @@ typedef struct MpegDemuxContext {
static int mpegps_read_header(AVFormatContext *s)
{
MpegDemuxContext *m = s->priv_data;
char buffer[7];
char buffer[7]
= { 0 }
;
int64_t last_pos = avio_tell(s->pb);
m->header_state = 0xff;
Write
Preview
Loading…
Cancel
Save