[uniscribe] Fix assertion fail in checksum calc

Program: Z:\Users\ebrahim\Desktop\harfbuzz\winbuild\util\.libs\hb-shape.exe
File: ../../src/hb-open-type-private.hh, Line 769

Expression: 0 == (Length & 3)

abnormal program termination
This commit is contained in:
Behdad Esfahbod 2018-03-28 10:44:52 -07:00
parent a48dd6ef23
commit b17e1a4088
1 changed files with 1 additions and 1 deletions

View File

@ -410,7 +410,7 @@ _hb_rename_font (hb_blob_t *blob, wchar_t *new_name)
if (face.find_table_index (HB_OT_TAG_name, &index)) if (face.find_table_index (HB_OT_TAG_name, &index))
{ {
OT::TableRecord &record = const_cast<OT::TableRecord &> (face.get_table (index)); OT::TableRecord &record = const_cast<OT::TableRecord &> (face.get_table (index));
record.checkSum.set_for_data (&name, name_table_length); record.checkSum.set_for_data (&name, new_length);
record.offset.set (name_table_offset); record.offset.set (name_table_offset);
record.length.set (name_table_length); record.length.set (name_table_length);
} }