From b08d329ba8addd09b20d39d9f75c44e754453a98 Mon Sep 17 00:00:00 2001 From: Oleg Oshmyan Date: Tue, 14 Jan 2014 13:11:01 +0000 Subject: Fix missing pointer dereference in 1636a551 --- libass/ass_shaper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libass/ass_shaper.c b/libass/ass_shaper.c index 4d4104e..944603e 100644 --- a/libass/ass_shaper.c +++ b/libass/ass_shaper.c @@ -239,7 +239,7 @@ get_glyph(hb_font_t *font, void *font_data, hb_codepoint_t unicode, // rotate glyph advances for @fonts while we still know the Unicode codepoints if (*glyph != 0) - get_cached_metrics(metrics_priv, face, unicode, glyph); + get_cached_metrics(metrics_priv, face, unicode, *glyph); return *glyph != 0; } -- cgit v1.2.3