[post] Initialize variables

This commit is contained in:
Behdad Esfahbod 2022-01-21 07:30:09 -07:00
parent cab943a015
commit 773cf4fdd3
1 changed files with 2 additions and 2 deletions

View File

@ -252,9 +252,9 @@ struct post
private:
uint32_t version;
const Array16Of<HBUINT16> *glyphNameIndex;
const Array16Of<HBUINT16> *glyphNameIndex = nullptr;
hb_vector_t<uint32_t> index_to_offset;
const uint8_t *pool;
const uint8_t *pool = nullptr;
hb_atomic_ptr_t<uint16_t *> gids_sorted_by_name;
};