ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/free/rpms/freetype-freeworld/F-15/freetype-2.4.4-CVE-2012-1137.patch
Revision: 1.1
Committed: Wed Apr 4 15:43:38 2012 UTC (13 months, 2 weeks ago) by kkofler
Branch: MAIN
CVS Tags: freetype-freeworld-2_4_4-7_fc15, HEAD
Log Message:
* Wed Apr 04 2012 Kevin Kofler <Kevin@tigcc.ticalc.org> 2.4.4-7
- Add security patches from Fedora freetype-2.4.4-8 (rh#806270)

Line File contents
1 --- a/src/bdf/bdflib.c
2 +++ b/src/bdf/bdflib.c
3 @@ -462,7 +462,7 @@
4 if ( num_items > list->size )
5 {
6 unsigned long oldsize = list->size; /* same as _bdf_list_t.size */
7 - unsigned long newsize = oldsize + ( oldsize >> 1 ) + 4;
8 + unsigned long newsize = oldsize + ( oldsize >> 1 ) + 5;
9 unsigned long bigsize = (unsigned long)( FT_INT_MAX / sizeof ( char* ) );
10 FT_Memory memory = list->memory;
11