]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Tue, 21 Sep 2010 16:10:30 +0000 (16:10 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Tue, 21 Sep 2010 16:10:30 +0000 (16:10 +0000)
coders/pcl.c

index 08272439735038f7fb4031aa879d1c9b5cb47e32..6da5bbf580ad07aae3735ecbcb427efdb7129727 100644 (file)
@@ -106,10 +106,10 @@ static MagickBooleanType IsPCL(const unsigned char *magick,const size_t length)
 {
   if (length < 4)
     return(MagickFalse);
-  if (memcmp(magick,"\033E\033",3) == 0)
-    return(MagickTrue);
   if (memcmp(magick,"\033E\033&",4) == 0)
     return(MagickFalse);
+  if (memcmp(magick,"\033E\033",3) == 0)
+    return(MagickTrue);
   return(MagickFalse);
 }
 \f