[ros-diffs] [fireball] 33320: atl: Remove freeing of an invalid pointer. http://www.winehq.org/pipermail/wine-patches/2008-May/054603.html

fireball at svn.reactos.org fireball at svn.reactos.org
Tue May 6 14:51:09 CEST 2008


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?rev=33320&r1=33319&r2=33320&view=diff
==============================================================================
--- 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());



More information about the Ros-diffs mailing list