Use snprintf instead of sprintf

This commit is contained in:
Andrew Murray 2021-06-30 23:47:10 +10:00
parent 5f4504bb03
commit 518ee3722a

View File

@ -1595,7 +1595,7 @@ convert(
return (Imaging)ImagingError_ValueError("conversion not supported");
#else
static char buf[100];
sprintf(buf, "conversion from %.10s to %.10s not supported", imIn->mode, mode);
snprintf(buf, 100, "conversion from %.10s to %.10s not supported", imIn->mode, mode);
return (Imaging)ImagingError_ValueError(buf);
#endif
}
@ -1645,8 +1645,9 @@ ImagingConvertTransparent(Imaging imIn, const char *mode, int r, int g, int b) {
#else
{
static char buf[100];
sprintf(
snprintf(
buf,
100,
"conversion from %.10s to %.10s not supported in convert_transparent",
imIn->mode,
mode);