Commit 77d84d52 authored by benoit's avatar benoit

Fix a warning on an uninitialized variable.


git-svn-id: file:///var/local/repositories/ffmpeg/trunk@18195 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 392df16b
......@@ -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){
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment