Don't destroy heap on unload, other DLLs might still depend on it

svn path=/trunk/; revision=7297
This commit is contained in:
Gé van Geldorp 2003-12-28 17:52:15 +00:00
parent ce3d36ede6
commit 755d9f5216

View file

@ -220,8 +220,10 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
COMCTL32_aSubclass = NULL;
/* destroy private heap */
#if 0
HeapDestroy (COMCTL32_hHeap);
TRACE("Heap destroyed: %p\n", COMCTL32_hHeap);
#endif
COMCTL32_hHeap = NULL;
break;
}