On 5/3/11 2:23 PM, Ronald S. Bultje wrote:
--- libavformat/nutenc.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)diff --git a/libavformat/nutenc.c b/libavformat/nutenc.c index 4ca761a..85340b1 100644 --- a/libavformat/nutenc.c +++ b/libavformat/nutenc.c @@ -588,6 +588,12 @@ static int write_header(AVFormatContext *s){ nut->chapter = av_mallocz(sizeof(ChapterContext)*s->nb_chapters); nut->time_base= av_mallocz(sizeof(AVRational )*(s->nb_streams + s->nb_chapters)); + if (!nut->stream || (s->nb_chapters&& !nut->chapter) || !nut->time_base) { + av_freep(&nut->stream); + av_freep(&nut->chapter); + av_freep(&nut->time_base); + return AVERROR(ENOMEM); + } for(i=0; i<s->nb_streams; i++){ AVStream *st= s->streams[i];
Seems ok _______________________________________________ libav-devel mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-devel
