summaryrefslogtreecommitdiff
path: root/ffprobe.c
diff options
context:
space:
mode:
authorStefano Sabatini <stefano.sabatini-lala@poste.it>2010-03-27 12:35:40 +0000
committerStefano Sabatini <stefano.sabatini-lala@poste.it>2010-03-27 12:35:40 +0000
commitefe8bb095b1ba8dff9b1131b76b9a48095f13104 (patch)
treef8096bf4eb001841215d52f532efdb85e70dd8bd /ffprobe.c
parentc271ad21acdebdb7d80598a14668a8358849b740 (diff)
10l: Initialize tag to NULL in show_stream, fix metadata showing in
streams. Originally committed as revision 22698 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'ffprobe.c')
-rw-r--r--ffprobe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ffprobe.c b/ffprobe.c
index b6ac061010..316e927346 100644
--- a/ffprobe.c
+++ b/ffprobe.c
@@ -118,7 +118,7 @@ static void show_stream(AVFormatContext *fmt_ctx, int stream_idx)
AVCodecContext *dec_ctx;
AVCodec *dec;
char val_str[128];
- AVMetadataTag *tag;
+ AVMetadataTag *tag = NULL;
char a, b, c, d;
printf("[STREAM]\n");