Fix HEAP_free call.

svn path=/trunk/; revision=12737
This commit is contained in:
Filip Navara 2005-01-02 20:49:00 +00:00
parent f6466c9edd
commit 3e2aa03dcf

View file

@ -1,4 +1,4 @@
/* $Id: font.c,v 1.11 2004/12/30 02:32:24 navaraf Exp $
/* $Id$
*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
@ -716,7 +716,7 @@ AddFontResourceExA ( LPCSTR lpszFilename, DWORD fl, PVOID pvReserved )
{
rc = AddFontResourceExW ( FilenameW, fl, pvReserved );
HEAP_free ( &FilenameW );
HEAP_free ( FilenameW );
}
return rc;
}