mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 05:25:05 +00:00
[VarStoreInstancer] Fix null deref
Should fix this hopefully: https://github.com/harfbuzz/harfbuzz/actions/runs/11203732283/job/31141330056?pr=4885
This commit is contained in:
parent
e8de8d88df
commit
4587e08a46
1 changed files with 2 additions and 2 deletions
|
@ -3714,11 +3714,11 @@ struct DeltaSetIndexMap
|
|||
|
||||
struct ItemVarStoreInstancer
|
||||
{
|
||||
ItemVarStoreInstancer (const ItemVariationStore *varStore,
|
||||
ItemVarStoreInstancer (const ItemVariationStore *varStore_,
|
||||
const DeltaSetIndexMap *varIdxMap,
|
||||
hb_array_t<const int> coords,
|
||||
VarRegionList::cache_t *cache = nullptr) :
|
||||
varStore (varStore), varIdxMap (varIdxMap), coords (coords), cache (cache)
|
||||
varStore (varStore_), varIdxMap (varIdxMap), coords (coords), cache (cache)
|
||||
{
|
||||
if (!varStore)
|
||||
varStore = &Null(ItemVariationStore);
|
||||
|
|
Loading…
Add table
Reference in a new issue