Nicer more idiomatic fix

This commit is contained in:
ckitagawa 2021-01-25 16:19:07 -05:00 committed by Behdad Esfahbod
parent 8f6559a373
commit 2e50b517e1
1 changed files with 1 additions and 2 deletions

View File

@ -214,10 +214,9 @@ struct COLR
if (unlikely (!old_record))
return hb_pair_t<bool, BaseGlyphRecord> (false, Null (BaseGlyphRecord));
BaseGlyphRecord new_record;
BaseGlyphRecord new_record = {0};
new_record.glyphId = new_gid;
new_record.numLayers = old_record->numLayers;
new_record.firstLayerIdx = 0; // Updated during serialization.
return hb_pair_t<bool, BaseGlyphRecord> (true, new_record);
})
| hb_filter (hb_first)