Commit 25cf9062 authored by François Revol's avatar François Revol

don't crash on null codec; by matthieu castet <castet DOT matthieu AT free DOT fr>

Originally committed as revision 3894 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 46103f6b
......@@ -515,9 +515,9 @@ static int mov_write_video_tag(ByteIOContext *pb, MOVTrack* track)
put_be16(pb, 1); /* Frame count (= 1) */
memset(compressor_name,0,32);
if (track->enc->codec->name)
if (track->enc->codec && track->enc->codec->name)
strncpy(compressor_name,track->enc->codec->name,31);
put_byte(pb, FFMAX(strlen(compressor_name),32) );
put_byte(pb, strlen(compressor_name));
put_buffer(pb, compressor_name, 31);
put_be16(pb, 0x18); /* Reserved */
......
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