Eric Pouech : dbghelp: Fix bad call to free() instead of pdb_free().
Module: wine Branch: master Commit: c83039bd6ea4d6d3e3579c934ddb9a6e8ea7c678 URL: http://source.winehq.org/git/wine.git/?a=commit;h=c83039bd6ea4d6d3e3579c934d... Author: Eric Pouech <eric.pouech(a)orange.fr> Date: Tue Feb 10 22:29:18 2009 +0100 dbghelp: Fix bad call to free() instead of pdb_free(). --- dlls/dbghelp/msc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/dbghelp/msc.c b/dlls/dbghelp/msc.c index f894afb..f293140 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; } }
participants (1)
-
Alexandre Julliard