From 9b69a9ef93e27bfda19399bee4da8e6288711ce8 Mon Sep 17 00:00:00 2001 From: Christoph von Wittich Date: Wed, 11 Feb 2009 14:17:26 +0000 Subject: [PATCH] dbghelp: Fix bad call to free() instead of pdb_free(). Eric Pouech svn path=/trunk/; revision=39549 --- reactos/dll/win32/dbghelp/msc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/dll/win32/dbghelp/msc.c b/reactos/dll/win32/dbghelp/msc.c index 564e745f3c8..47998549bde 100644 --- a/reactos/dll/win32/dbghelp/msc.c +++ b/reactos/dll/win32/dbghelp/msc.c @@ -2477,7 +2477,7 @@ static BOOL pdb_process_internal(const struct process* pcs, else { WARN("wrong header %x expecting 0xeffeeffe\n", *(const DWORD*)files_image); - free(files_image); + pdb_free(files_image); files_image = NULL; } }