shithub: freetype+ttf2subf

Download patch

ref: 957fa8568224ec386ef0fbbb2695329df4932043
parent: 995d1165b9c249ef45a9244b118af5c01500109d
author: David Turner <[email protected]>
date: Sat Jun 8 09:48:41 EDT 2002

- removing a typo in ftccache.i that prevented it from compiling correctly

- fixed the infamous bug that caused the cache to crash with large fonts.
  the hash table buckets array wasn't shrinked correctly during cache
  flushes..

git/fs: mount .git/fs: mount/attach disallowed
--- a/src/cache/ftccache.c
+++ b/src/cache/ftccache.c
@@ -211,7 +211,7 @@
         cache->mask >>= 1;
         p             = cache->mask;
 
-        if ( FT_RENEW_ARRAY( cache->buckets, ( mask + 1 ) * 2, mask ) )
+        if ( FT_RENEW_ARRAY( cache->buckets, ( mask + 1 ) * 2, (mask+1) ) )
         {
           FT_ERROR(( "ftc_node_hash_unlink: couldn't shunk buckets!\n" ));
           goto Exit;
--- a/src/cache/ftccache.i
+++ b/src/cache/ftccache.i
@@ -79,14 +79,16 @@
       hash   = query->hash;
 
 #ifdef FTC_CACHE_USE_LINEAR_HASHING
-      FT_UInt  index;
+      {
+        FT_UInt  index;
 
 
-      index = hash & cache->mask;
-      if ( index < cache->p )
-        index = hash & ( cache->mask * 2 + 1 );
+        index = hash & cache->mask;
+        if ( index < cache->p )
+          index = hash & ( cache->mask * 2 + 1 );
 
-      bucket  = cache->buckets + index;
+        bucket  = cache->buckets + index;
+      }
 #else
       bucket  = cache->buckets + ( hash % cache->size );
 #endif