diff options
author | Stefano Sabatini | 2010-03-27 12:35:40 +0000 |
---|---|---|
committer | Stefano Sabatini | 2010-03-27 12:35:40 +0000 |
commit | efe8bb095b1ba8dff9b1131b76b9a48095f13104 (patch) | |
tree | f8096bf4eb001841215d52f532efdb85e70dd8bd /ffprobe.c | |
parent | c271ad21acdebdb7d80598a14668a8358849b740 (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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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"); |