Author: cwittich
Date: Wed Feb 11 08:17:26 2009
New Revision: 39549
URL:
http://svn.reactos.org/svn/reactos?rev=39549&view=rev
Log:
dbghelp: Fix bad call to free() instead of pdb_free().
Eric Pouech <eric dot pouech at orange dot fr>
Modified:
trunk/reactos/dll/win32/dbghelp/msc.c
Modified: trunk/reactos/dll/win32/dbghelp/msc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/dbghelp/msc.c?re…
==============================================================================
--- trunk/reactos/dll/win32/dbghelp/msc.c [iso-8859-1] (original)
+++ trunk/reactos/dll/win32/dbghelp/msc.c [iso-8859-1] Wed Feb 11 08:17:26 2009
@@ -2477,7 +2477,7 @@
else
{
WARN("wrong header %x expecting 0xeffeeffe\n", *(const
DWORD*)files_image);
- free(files_image);
+ pdb_free(files_image);
files_image = NULL;
}
}