mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-06 14:05:05 +00:00
[morx] Relax sanitizing
Ignore claimed ChainSubtable length and only sanitize against the whole table. Works around what seems to be a broken LookupFormat0 in a Noncontextual subtable in GeezaPro on MacOS 15.0 Fixes https://github.com/harfbuzz/harfbuzz/issues/4873
This commit is contained in:
parent
867366ccf1
commit
527e60b015
1 changed files with 4 additions and 2 deletions
|
@ -1062,7 +1062,8 @@ struct ChainSubtable
|
|||
bool apply (hb_aat_apply_context_t *c) const
|
||||
{
|
||||
TRACE_APPLY (this);
|
||||
hb_sanitize_with_object_t with (&c->sanitizer, this);
|
||||
// Disabled for https://github.com/harfbuzz/harfbuzz/issues/4873
|
||||
//hb_sanitize_with_object_t with (&c->sanitizer, this);
|
||||
return_trace (dispatch (c));
|
||||
}
|
||||
|
||||
|
@ -1075,7 +1076,8 @@ struct ChainSubtable
|
|||
c->check_range (this, length)))
|
||||
return_trace (false);
|
||||
|
||||
hb_sanitize_with_object_t with (c, this);
|
||||
// Disabled for https://github.com/harfbuzz/harfbuzz/issues/4873
|
||||
//hb_sanitize_with_object_t with (c, this);
|
||||
return_trace (dispatch (c));
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue