fixed Index::serialize

The bug was causing CharString of the last glyph corrupt
This commit is contained in:
Michiharu Ariza 2018-08-01 16:32:27 -07:00
parent 16f4dc9b73
commit 3bda54c43b
1 changed files with 3 additions and 1 deletions

View File

@ -256,11 +256,13 @@ struct Index
/* serialize indices */
unsigned int offset = 1;
for (unsigned int i = 0; i < bytesArray.len; i++)
unsigned int i = 0;
for (; i < bytesArray.len; i++)
{
set_offset_at (i, offset);
offset += bytesArray[i].len;
}
set_offset_at (i, offset);
/* serialize data */
for (unsigned int i = 0; i < bytesArray.len; i++)