]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Wed, 20 Feb 2013 00:48:35 +0000 (00:48 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Wed, 20 Feb 2013 00:48:35 +0000 (00:48 +0000)
coders/webp.c

index 48688f8567524ba92d0f947ff0b6407663620933..5f20fb77f5664cfc3665df528a6d00e0b86e1fed 100644 (file)
@@ -174,7 +174,7 @@ static Image *ReadWEBPImage(const ImageInfo *image_info,
   image->rows=(size_t) webp_image->height;
   image->alpha_trait=features->has_alpha != 0 ? BlendPixelTrait :
     UndefinedPixelTrait;
-  if ((stream[15] == 'L') || (stream[15] == ' '))
+  if (stream[15] == 'L')
     image->quality=100;
   p=webp_image->u.RGBA.rgba;
   for (y=0; y < (ssize_t) image->rows; y++)