]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/image.c (webp_load): Fix thinkos.
authorStefan Kangas <stefan@marxist.se>
Sat, 23 Oct 2021 00:46:06 +0000 (02:46 +0200)
committerStefan Kangas <stefan@marxist.se>
Sat, 23 Oct 2021 00:46:06 +0000 (02:46 +0200)
src/image.c

index 308dc687260b3827c5653c79131e531ec83fbfc5..f78ad044ab28af306a7294671b1477c5af253e37 100644 (file)
@@ -8888,7 +8888,7 @@ webp_load (struct frame *f, struct image *img)
   /* Validate the WebP image header.  */
   if (!WebPGetInfo (contents, size, NULL, NULL))
     {
-      if (!NILP (specified_data))
+      if (NILP (specified_data))
        image_error ("Not a WebP file: `%s'", file);
       else
        image_error ("Invalid header in WebP image data");
@@ -8911,7 +8911,7 @@ webp_load (struct frame *f, struct image *img)
     case VP8_STATUS_USER_ABORT:
     default:
       /* Error out in all other cases.  */
-      if (!NILP (specified_data))
+      if (NILP (specified_data))
        image_error ("Error when interpreting WebP image data: `%s'", file);
       else
        image_error ("Error when interpreting WebP image data");