Commit f2d65a6c authored by Michael Niedermayer's avatar Michael Niedermayer

Avoid segfault due to not set AVCodec.

Originally committed as revision 15400 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent aeb62788
......@@ -45,7 +45,7 @@ static int wav_write_header(AVFormatContext *s)
fmt = start_tag(pb, "fmt ");
if (put_wav_header(pb, s->streams[0]->codec) < 0) {
av_log(s, AV_LOG_ERROR, "%s codec not supported in WAVE format\n",
s->streams[0]->codec->codec->name);
s->streams[0]->codec->codec ? s->streams[0]->codec->codec->name : "NONE");
av_free(wav);
return -1;
}
......
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