* src/base/ftgloadr.c (FT_GlyphLoader_CheckSubGlyphs): fixed a memory

allocation bug that was due to un-careful renaming of the FT_SubGlyph
        type..
This commit is contained in:
David Turner 2002-03-20 15:35:53 +00:00
parent 5cff1134e9
commit 5819e3f3c7
2 changed files with 5 additions and 1 deletions

View File

@ -1,5 +1,9 @@
2002-03-20 David Turner <david@freetype.org>
* src/base/ftgloadr.c (FT_GlyphLoader_CheckSubGlyphs): fixed a memory
allocation bug that was due to un-careful renaming of the FT_SubGlyph
type..
* renaming stream macros. Examples:
FILE_Skip => FT_STREAM_SKIP

View File

@ -245,7 +245,7 @@
if ( new_max > old_max )
{
new_max = ( new_max + 1 ) & -2;
if ( REALLOC_ARRAY( base->subglyphs, old_max, new_max, FT_SubGlyph ) )
if ( REALLOC_ARRAY( base->subglyphs, old_max, new_max, FT_SubGlyphRec ) )
goto Exit;
loader->max_subglyphs = new_max;