ffmpeg | branch: master | Michael Niedermayer <michae...@gmx.at> | Fri Oct 24 13:15:37 2014 +0100| [b3d11437ca55d81eeb10c923343ad69b73895fa8] | committer: Vittorio Giovara
oggenc: remove unneeded null check The code would have segfaulted before if oggstream were NULL. CC: libav-sta...@libav.org Bug-Id: CID 732218 > http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=b3d11437ca55d81eeb10c923343ad69b73895fa8 --- libavformat/oggenc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libavformat/oggenc.c b/libavformat/oggenc.c index 1277a8b..8f08da1 100644 --- a/libavformat/oggenc.c +++ b/libavformat/oggenc.c @@ -530,7 +530,7 @@ static int ogg_write_header(AVFormatContext *s) AVStream *st = s->streams[j]; OGGStreamContext *oggstream = st->priv_data; for (i = 1; i < 3; i++) { - if (oggstream && oggstream->header_len[i]) + if (oggstream->header_len[i]) ogg_buffer_data(s, st, oggstream->header[i], oggstream->header_len[i], 0, 1); } _______________________________________________ ffmpeg-cvslog mailing list ffmpeg-cvslog@ffmpeg.org http://ffmpeg.org/mailman/listinfo/ffmpeg-cvslog