]> granicus.if.org Git - imagemagick/commitdiff
Whitespace.
authorDirk Lemstra <dirk@git.imagemagick.org>
Sun, 17 Sep 2017 06:46:09 +0000 (08:46 +0200)
committerDirk Lemstra <dirk@git.imagemagick.org>
Sun, 17 Sep 2017 06:46:09 +0000 (08:46 +0200)
coders/gif.c

index 9ea4c426e13e0710f758f75ed1a4fd35b543e7e3..2dbdfc2599eda60c365bba939f2f70198e30ef52 100644 (file)
@@ -1156,7 +1156,8 @@ static Image *ReadGIFImage(const ImageInfo *image_info,ExceptionInfo *exception)
                 if (info == (unsigned char *) NULL)
                   {
                     meta_image=DestroyImage(meta_image);
-                    global_colormap=(unsigned char *) RelinquishMagickMemory(global_colormap);
+                    global_colormap=(unsigned char *) RelinquishMagickMemory(
+                      global_colormap);
                     ThrowReaderException(ResourceLimitError,
                       "MemoryAllocationFailed");
                   }
@@ -1175,7 +1176,8 @@ static Image *ReadGIFImage(const ImageInfo *image_info,ExceptionInfo *exception)
                       if (info == (unsigned char *) NULL)
                         {
                           meta_image=DestroyImage(meta_image);
-                          global_colormap=(unsigned char *) RelinquishMagickMemory(global_colormap);
+                          global_colormap=(unsigned char *)
+                            RelinquishMagickMemory(global_colormap);
                           ThrowReaderException(ResourceLimitError,
                             "MemoryAllocationFailed");
                         }
@@ -1185,7 +1187,8 @@ static Image *ReadGIFImage(const ImageInfo *image_info,ExceptionInfo *exception)
                 if (profile == (StringInfo *) NULL)
                   {
                     meta_image=DestroyImage(meta_image);
-                    global_colormap=(unsigned char *) RelinquishMagickMemory(global_colormap);
+                    global_colormap=(unsigned char *) RelinquishMagickMemory(
+                      global_colormap);
                     info=(unsigned char *) RelinquishMagickMemory(info);
                     ThrowReaderException(ResourceLimitError,
                       "MemoryAllocationFailed");
@@ -1360,7 +1363,8 @@ static Image *ReadGIFImage(const ImageInfo *image_info,ExceptionInfo *exception)
     status=SetImageExtent(image,image->columns,image->rows,exception);
     if (status == MagickFalse)
       {
-        global_colormap=(unsigned char *) RelinquishMagickMemory(global_colormap);
+        global_colormap=(unsigned char *) RelinquishMagickMemory(
+          global_colormap);
         meta_image=DestroyImage(meta_image);
         return(DestroyImageList(image));
       }