From 2cee5b68a07b99214ef9428fe5d03e7b378a558f Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Mon, 24 Aug 2015 13:45:12 +0100 Subject: [PATCH] [ot-font] Fix short-offset calculation --- src/hb-ot-font.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/hb-ot-font.cc b/src/hb-ot-font.cc index f5bf6cc48..9cde83898 100644 --- a/src/hb-ot-font.cc +++ b/src/hb-ot-font.cc @@ -140,8 +140,8 @@ struct hb_ot_face_glyf_accelerator_t unsigned int start_offset, end_offset; if (this->short_offset) { - start_offset = this->loca->u.shortsZ[glyph]; - end_offset = this->loca->u.shortsZ[glyph + 1]; + start_offset = 2 * this->loca->u.shortsZ[glyph]; + end_offset = 2 * this->loca->u.shortsZ[glyph + 1]; } else {