indent
authorMichael Niedermayer <michaelni@gmx.at>
Fri, 23 May 2008 13:03:04 +0000 (13:03 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Fri, 23 May 2008 13:03:04 +0000 (13:03 +0000)
Originally committed as revision 13256 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavformat/utils.c

index aa8a117..f9d50ce 100644 (file)
@@ -2245,8 +2245,8 @@ int ff_new_chapter(AVFormatContext *s, int id, int64_t start, int64_t end, const
 
     if(!chapter){
         chapter= av_mallocz(sizeof(AVChapter));
-    if(!chapter)
-        return AVERROR(ENOMEM);
+        if(!chapter)
+            return AVERROR(ENOMEM);
         dynarray_add(&s->chapters, &s->num_chapters, chapter);
     }
     if(chapter->title)