File CVE-2012-1137.patch of Package freetype2
--- freetype-2.3.9/src/bdf/bdflib.c.orig 2012-04-12 14:50:05.853908493 +0200
+++ freetype-2.3.9/src/bdf/bdflib.c 2012-04-12 14:51:07.653912614 +0200
@@ -424,7 +424,7 @@
if ( num_items > (int)list->size )
{
int oldsize = list->size;
- int newsize = oldsize + ( oldsize >> 1 ) + 4;
+ int newsize = oldsize + ( oldsize >> 1 ) + 5;
int bigsize = FT_INT_MAX / sizeof ( char* );
FT_Memory memory = list->memory;