Thinko; fix previous commit.

This commit is contained in:
Werner Lemberg 2016-07-19 07:23:17 +02:00
parent e69f34b1e2
commit 9f6426eb16
1 changed files with 2 additions and 2 deletions

View File

@ -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;