Raise table growth limit during subsetting. Real case encountered that exceeded the current limit. Fixes #4943.

This commit is contained in:
Garret Rieger 2024-11-22 01:00:57 +00:00 committed by Behdad Esfahbod
parent 773fe85018
commit 0b7beefd0b

View file

@ -295,7 +295,7 @@ _try_subset (const TableType *table,
DEBUG_MSG (SUBSET, nullptr, "OT::%c%c%c%c ran out of room; reallocating to %u bytes.",
HB_UNTAG (c->table_tag), buf_size);
if (unlikely (buf_size > c->source_blob->length * 16 ||
if (unlikely (buf_size > c->source_blob->length * 256 ||
!buf->alloc (buf_size, true)))
{
DEBUG_MSG (SUBSET, nullptr, "OT::%c%c%c%c failed to reallocate %u bytes.",