Author: fireball Date: Tue May 6 07:51:08 2008 New Revision: 33320
URL: http://svn.reactos.org/svn/reactos?rev=33320&view=rev Log: atl: Remove freeing of an invalid pointer.
http://www.winehq.org/pipermail/wine-patches/2008-May/054603.html
Modified: trunk/reactos/dll/win32/atl/registrar.c
Modified: trunk/reactos/dll/win32/atl/registrar.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/atl/registrar.c?r... ============================================================================== --- trunk/reactos/dll/win32/atl/registrar.c [iso-8859-1] (original) +++ trunk/reactos/dll/win32/atl/registrar.c [iso-8859-1] Tue May 6 07:51:08 2008 @@ -454,7 +454,8 @@ WARN("could not load resource\n"); hres = HRESULT_FROM_WIN32(GetLastError()); } - HeapFree(GetProcessHeap(), 0, regstra); + // Sent to wine-patches http://www.winehq.org/pipermail/wine-patches/2008-May/054603.html + //HeapFree(GetProcessHeap(), 0, regstra); }else { WARN("Could not find source\n"); hres = HRESULT_FROM_WIN32(GetLastError());