From: Michael R Sweet Date: Sun, 26 Jul 2026 22:33:36 +0000 (-0400) Subject: Fix a clang warning. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=eac121d465a0983b973c5756d0ae7e22cb4233db;p=thirdparty%2Fcups.git Fix a clang warning. --- diff --git a/cups/ipp.c b/cups/ipp.c index 183dc1ceeb..80fb58fac7 100644 --- a/cups/ipp.c +++ b/cups/ipp.c @@ -3425,7 +3425,7 @@ ippSetStringfv(ipp_t *ipp, // I - IPP message } // Set the formatted string and return... - return (ippSetString(ipp, attr, element, buffer)); + return (ippSetString(ipp, attr, element, _cupsStrAlloc(buffer))); }