From: Eli Zaretskii Date: Sat, 22 Mar 2025 16:45:38 +0000 (+0200) Subject: Fix usage of string data pointers in xfaces.c X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c367313a8d4204a8d222fac73fc1b9170b13f6c6;p=emacs.git Fix usage of string data pointers in xfaces.c * src/xfaces.c (tty_defined_color): Don't use SSDATA pointers across calls to Lisp. (Bug#77046) (cherry picked from commit 9816c61c4876ac2acdc6d9efb73c4270846b5555) --- diff --git a/src/xfaces.c b/src/xfaces.c index fbbaffb8889..7a4571c00c4 100644 --- a/src/xfaces.c +++ b/src/xfaces.c @@ -1150,14 +1150,18 @@ tty_defined_color (struct frame *f, const char *color_name, color_def->green = 0; if (*color_name) - status = tty_lookup_color (f, build_string (color_name), color_def, NULL); - - if (color_def->pixel == FACE_TTY_DEFAULT_COLOR && *color_name) { - if (strcmp (color_name, "unspecified-fg") == 0) - color_def->pixel = FACE_TTY_DEFAULT_FG_COLOR; - else if (strcmp (color_name, "unspecified-bg") == 0) - color_def->pixel = FACE_TTY_DEFAULT_BG_COLOR; + Lisp_Object lcolor = build_string (color_name); + status = tty_lookup_color (f, lcolor, color_def, NULL); + + if (color_def->pixel == FACE_TTY_DEFAULT_COLOR) + { + color_name = SSDATA (lcolor); + if (strcmp (color_name, "unspecified-fg") == 0) + color_def->pixel = FACE_TTY_DEFAULT_FG_COLOR; + else if (strcmp (color_name, "unspecified-bg") == 0) + color_def->pixel = FACE_TTY_DEFAULT_BG_COLOR; + } } if (color_def->pixel != FACE_TTY_DEFAULT_COLOR)