File cups-1.7.5-CVE-2023-32324.patch of Package cups.29092
--- cups/string.c.orig 2014-05-22 15:59:21.000000000 +0200 +++ cups/string.c 2023-05-24 10:31:17.301958589 +0200 @@ -753,6 +753,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... */