File cups-2.4.2-CVE-2023-32324.patch of Package cups
--- cups/string.c.orig 2022-05-26 08:17:21.000000000 +0200 +++ cups/string.c 2023-06-01 13:26:33.175494819 +0200 @@ -730,6 +730,9 @@ _cups_strlcpy(char *dst, /* O - D size_t srclen; /* Length of source string */ + if (size == 0) + return (0); + /* * Figure out how much room is needed... */