]> granicus.if.org Git - imagemagick/commitdiff
Added missing check.
authorDirk Lemstra <dirk@lemstra.org>
Sun, 20 Jan 2019 09:25:29 +0000 (10:25 +0100)
committerDirk Lemstra <dirk@lemstra.org>
Sun, 20 Jan 2019 09:25:29 +0000 (10:25 +0100)
coders/jpeg.c

index 5647140e276a649f19fbbbf495d21ed466081b78..ec78c0b537d79fb41cffc53bdaf95161ea2de2f3 100644 (file)
@@ -2151,8 +2151,9 @@ static void WriteProfile(j_compress_ptr jpeg_info,Image *image,
             xmp_profile=DestroyStringInfo(xmp_profile);
           }
       }
-    (void) LogMagickEvent(CoderEvent,GetMagickModule(),
-      "%s profile: %.20g bytes",name,(double) GetStringInfoLength(profile));
+    if (image->debug != MagickFalse)
+      (void) LogMagickEvent(CoderEvent,GetMagickModule(),
+        "%s profile: %.20g bytes",name,(double) GetStringInfoLength(profile));
     name=GetNextImageProfile(image);
   }
   custom_profile=DestroyStringInfo(custom_profile);