summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexei Podtelezhnikov <apodtele@gmail.com>2021-09-14 21:25:47 -0400
committerAlexei Podtelezhnikov <apodtele@gmail.com>2021-09-14 21:25:47 -0400
commit9a4c846e60e0260f79ce760fe2aef06857197eff (patch)
treebdf51e39871642dc39ae8f103bc4d54786f0b65c
parent0a8ee851e05589f905f3d205cd84f2556f3584bb (diff)
downloadfreetype2-9a4c846e60e0260f79ce760fe2aef06857197eff.tar.gz
[cache] Revert to some zeroing.
* src/cache/ftccache.c (ftc_cache_init, ftc_cache_resize): Zero `buckets` again to fix some crashes.
-rw-r--r--src/cache/ftccache.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cache/ftccache.c b/src/cache/ftccache.c
index 86660a41f..4bdf9b1b1 100644
--- a/src/cache/ftccache.c
+++ b/src/cache/ftccache.c
@@ -119,7 +119,7 @@
FT_UFast count = mask + p + 1; /* number of buckets */
- /* do we need to shrink the buckets array? */
+ /* do we need to expand the buckets array? */
if ( cache->slack < 0 )
{
FTC_Node new_list = NULL;
@@ -135,7 +135,7 @@
/* if we can't expand the array, leave immediately */
- if ( FT_QRENEW_ARRAY( cache->buckets,
+ if ( FT_RENEW_ARRAY( cache->buckets,
( mask + 1 ) * 2, ( mask + 1 ) * 4 ) )
break;
}
@@ -172,7 +172,7 @@
cache->p = p + 1;
}
- /* do we need to expand the buckets array? */
+ /* do we need to shrink the buckets array? */
else if ( cache->slack > (FT_Long)count * FTC_HASH_SUB_LOAD )
{
FT_UFast old_index = p + mask;
@@ -341,7 +341,7 @@
cache->mask = FTC_HASH_INITIAL_SIZE - 1;
cache->slack = FTC_HASH_INITIAL_SIZE * FTC_HASH_MAX_LOAD;
- (void)FT_QNEW_ARRAY( cache->buckets, FTC_HASH_INITIAL_SIZE * 2 );
+ (void)FT_NEW_ARRAY( cache->buckets, FTC_HASH_INITIAL_SIZE * 2 );
return error;
}