Blob Blame History Raw
diff -rupN --no-dereference Pillow-7.2.0/src/libImaging/Convert.c Pillow-7.2.0-new/src/libImaging/Convert.c
--- Pillow-7.2.0/src/libImaging/Convert.c	2020-06-30 09:50:35.000000000 +0200
+++ Pillow-7.2.0-new/src/libImaging/Convert.c	2021-07-24 22:47:24.437311246 +0200
@@ -1664,9 +1664,8 @@ convert(Imaging imOut, Imaging imIn, con
 #ifdef notdef
         return (Imaging) ImagingError_ValueError("conversion not supported");
 #else
-        static char buf[256];
-        /* FIXME: may overflow if mode is too large */
-        sprintf(buf, "conversion from %s to %s not supported", imIn->mode, mode);
+      static char buf[100];
+      snprintf(buf, 100, "conversion from %s to %s not supported", imIn->mode, mode);
         return (Imaging) ImagingError_ValueError(buf);
 #endif
     }
@@ -1724,9 +1723,8 @@ ImagingConvertTransparent(Imaging imIn,
     }
 #else
     {
-      static char buf[256];
-      /* FIXME: may overflow if mode is too large */
-      sprintf(buf, "conversion from %s to %s not supported in convert_transparent", imIn->mode, mode);
+      static char buf[100];
+      snprintf(buf, 100, "conversion from %.10s to %.10s not supported in convert_transparent", imIn->mode, mode);
       return (Imaging) ImagingError_ValueError(buf);
     }
 #endif