Make buffer size growth start from 32 instead of 8
authorBehdad Esfahbod <behdad@behdad.org>
Wed, 27 Apr 2011 13:33:58 +0000 (09:33 -0400)
committerBehdad Esfahbod <behdad@behdad.org>
Wed, 27 Apr 2011 13:38:23 +0000 (09:38 -0400)
src/hb-buffer.cc

index 7cf5adc..5468270 100644 (file)
@@ -78,7 +78,7 @@ _hb_buffer_enlarge (hb_buffer_t *buffer, unsigned int size)
   separate_out = buffer->out_info != buffer->info;
 
   while (size > new_allocated)
-    new_allocated += (new_allocated >> 1) + 8;
+    new_allocated += (new_allocated >> 1) + 32;
 
   ASSERT_STATIC (sizeof (buffer->info[0]) == sizeof (buffer->pos[0]));
   bool overflows = new_allocated >= ((unsigned int) -1) / sizeof (buffer->info[0]);