Commit 658d79fb authored by bcoudurier's avatar bcoudurier

remove warnings about uninitialized vars

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@16534 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent 29260ffa
......@@ -905,7 +905,7 @@ static int mov_write_vmhd_tag(ByteIOContext *pb)
static int mov_write_hdlr_tag(ByteIOContext *pb, MOVTrack *track)
{
const char *descr, *hdlr, *hdlr_type;
const char *hdlr, *descr = NULL, *hdlr_type = NULL;
int64_t pos = url_ftell(pb);
if (!track) { /* no media --> data handler */
......
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