From 4e230723db467d646fa6750d18545351088f515f Mon Sep 17 00:00:00 2001 From: Michael R Sweet Date: Tue, 4 Nov 2025 11:47:11 -0500 Subject: [PATCH] Make sure options pointer is not NULL. --- cups/ppd-conflicts.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cups/ppd-conflicts.c b/cups/ppd-conflicts.c index 29e34003a6..86890240f7 100644 --- a/cups/ppd-conflicts.c +++ b/cups/ppd-conflicts.c @@ -192,7 +192,7 @@ cupsResolveConflicts( * Range check input... */ - if (!ppd || !num_options || !options || (option == NULL) != (choice == NULL)) + if (!ppd || !num_options || !options || !*options || (option == NULL) != (choice == NULL)) return (0); /* -- 2.47.3