fixed an obvious bug in FT_Done_Memory. The ANSI "free" function

was called, instead of "memory->free" !!
This commit is contained in:
David Turner 2000-12-05 08:39:14 +00:00
parent 7132dbdacf
commit 0d5c29f95c
1 changed files with 1 additions and 1 deletions

View File

@ -276,7 +276,7 @@
FT_EXPORT_DEF( void ) FT_Done_Memory( FT_Memory memory )
{
free( memory );
memory->free( memory );
}