From: Eli Zaretskii Date: Fri, 28 May 2021 07:25:26 +0000 (+0300) Subject: Attempt to fix segfaults caused by changes in 'lisp_string_width' X-Git-Tag: emacs-28.0.90~2297 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3fe2f482bd2c636934cfd8e8aa0a07631164831d;p=emacs.git Attempt to fix segfaults caused by changes in 'lisp_string_width' * src/character.c (lisp_string_width): Validate the value of TO argument before passing it to 'composition_gstring_width'. (Bug#48711) --- diff --git a/src/character.c b/src/character.c index 60424fab71e..e44ab8d43b1 100644 --- a/src/character.c +++ b/src/character.c @@ -376,9 +376,13 @@ lisp_string_width (Lisp_Object string, ptrdiff_t from, ptrdiff_t to, && find_automatic_composition (i, -1, &ignore, &end, &val, string) && end > i) { - int pixelwidth = composition_gstring_width (val, 0, - LGSTRING_GLYPH_LEN (val), - NULL); + int j; + for (j = 0; j < LGSTRING_GLYPH_LEN (val); j++) + if (NILP (LGSTRING_GLYPH (val, j))) + break; + + int pixelwidth = composition_gstring_width (val, 0, j, NULL); + /* The below is somewhat expensive, so compute it only once for the entire loop, and only if needed. */ if (font_width < 0)