From 9f6426eb16c666c3545faf913af260214205c77c Mon Sep 17 00:00:00 2001 From: Werner Lemberg Date: Tue, 19 Jul 2016 07:23:17 +0200 Subject: [PATCH] Thinko; fix previous commit. --- src/truetype/ttgxvar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/truetype/ttgxvar.c b/src/truetype/ttgxvar.c index 37157962e..033b57f3b 100644 --- a/src/truetype/ttgxvar.c +++ b/src/truetype/ttgxvar.c @@ -159,9 +159,9 @@ } /* in the nested loops below we increase `i' twice; */ - /* it is faster to simply allocate one more slot */ + /* it is faster to simply allocate two more slots */ /* than to add another test within the loop */ - if ( FT_NEW_ARRAY( points, n + 1 ) ) + if ( FT_NEW_ARRAY( points, n + 2 ) ) return NULL; *point_cnt = n;