From 127a3350c1889d18d2ba52b22076d032a81e7742 Mon Sep 17 00:00:00 2001 From: Rohit Kumar Date: Sat, 30 May 2026 07:48:03 +0530 Subject: [PATCH] Fix ppdLutLoad() returning NULL due to undersized spec buffer --- ppd/ppd-load-profile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ppd/ppd-load-profile.c b/ppd/ppd-load-profile.c index 454334344..f419fd7bc 100644 --- a/ppd/ppd-load-profile.c +++ b/ppd/ppd-load-profile.c @@ -131,7 +131,7 @@ ppdLutLoad(ppd_file_t *ppd, // I - PPD file void *ld) // I - Log function data { char name[PPD_MAX_NAME], // Attribute name - spec[PPD_MAX_NAME]; // Attribute spec + spec[IPP_MAX_NAME]; // Attribute spec ppd_attr_t *attr; // Attribute int nvals; // Number of values float vals[4]; // Values