* src/truetype/ttinterp.c (Ins_WCVTF): Add missing CVT copy-on-write protection.

Fixes #1430.
This commit is contained in:
Mateusz Jurczyk 2026-05-07 13:00:15 +00:00
parent df2fb115bf
commit 287206a96b

View file

@ -2841,7 +2841,13 @@
ARRAY_BOUND_ERROR;
}
else
{
Modify_CVT_Check( exc );
if ( exc->error )
return;
exc->cvt[I] = FT_MulFix( args[1], exc->tt_metrics.scale );
}
}