git.videolan.org
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3344cf8
)
Fix a warning on an uninitialized variable.
author
Benoit Fouet
<benoit.fouet@free.fr>
Thu, 26 Mar 2009 14:15:42 +0000
(14:15 +0000)
committer
Benoit Fouet
<benoit.fouet@free.fr>
Thu, 26 Mar 2009 14:15:42 +0000
(14:15 +0000)
Originally committed as revision 18195 to svn://svn.ffmpeg.org/ffmpeg/trunk
tests/seek_test.c
patch
|
blob
|
history
diff --git
a/tests/seek_test.c
b/tests/seek_test.c
index
abb993f
..
c2d0646
100644
(file)
--- a/
tests/seek_test.c
+++ b/
tests/seek_test.c
@@
-23,6
+23,7
@@
#include <stdlib.h>
#include <stdio.h>
+#include "libavutil/common.h"
#include "libavformat/avformat.h"
#undef exit
@@
-70,7
+71,7
@@
int main(int argc, char **argv)
for(i=0; ; i++){
AVPacket pkt;
- AVStream *
st
;
+ AVStream *
av_uninit(st)
;
memset(&pkt, 0, sizeof(pkt));
if(ret>=0){