mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-05-05 00:48:00 +02:00
fixed an obvious bug in FT_Done_Memory. The ANSI "free" function
was called, instead of "memory->free" !!
This commit is contained in:
parent
e00615992e
commit
e646ff6fe2
1 changed files with 1 additions and 1 deletions
|
|
@ -276,7 +276,7 @@
|
|||
|
||||
FT_EXPORT_DEF( void ) FT_Done_Memory( FT_Memory memory )
|
||||
{
|
||||
free( memory );
|
||||
memory->free( memory );
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue