mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-20 12:40:56 -08:00
(coding_restore_composition): Check invalid
composition data more rigidly.
This commit is contained in:
parent
c14dc0edf2
commit
09721b316c
2 changed files with 8 additions and 0 deletions
|
|
@ -5458,6 +5458,9 @@ coding_restore_composition (coding, obj)
|
|||
if (method == COMPOSITION_WITH_RULE_ALTCHARS
|
||||
&& len % 2 == 0)
|
||||
len --;
|
||||
if (len < 1)
|
||||
/* Invalid composition data. */
|
||||
break;
|
||||
for (j = 0; j < len; j++)
|
||||
args[j] = make_number (data[4 + j]);
|
||||
components = (method == COMPOSITION_WITH_ALTCHARS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue