Skip to content
Snippets Groups Projects
Commit 77dc009d authored by Alexandre Julliard's avatar Alexandre Julliard
Browse files

Fixed bug in system heap creation when it already exists.

parent 0e1cbfd5
No related branches found
No related tags found
No related merge requests found
......@@ -106,6 +106,7 @@ inline static HANDLE HEAP_CreateSystemHeap(void)
{
/* wait for the heap to be initialized */
WaitForSingleObject( event, INFINITE );
systemHeap = (HANDLE)base;
}
CloseHandle( map );
return systemHeap;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment