From c83039bd6ea4d6d3e3579c934ddb9a6e8ea7c678 Mon Sep 17 00:00:00 2001 From: Eric Pouech Date: Tue, 10 Feb 2009 22:29:18 +0100 Subject: [PATCH] dbghelp: Fix bad call to free() instead of pdb_free(). --- dlls/dbghelp/msc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c index f894afbcff5..f29314014c8 100644 --- a/dlls/dbghelp/msc.c +++ b/dlls/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; } }