Commit 7163000d authored by Alexandre Julliard's avatar Alexandre Julliard

Only create the shared heap when Windows version is Win9x.

parent 7ee8adfd
......@@ -161,7 +161,7 @@ static BOOL process_attach(void)
}
/* Create the shared heap for broken win95 native dlls */
HeapCreate( HEAP_SHARED, 0, 0 );
if (GetVersion() & 0x80000000) HeapCreate( HEAP_SHARED, 0, 0 );
/* initialize LDT locking */
wine_ldt_init_locking( ldt_lock, ldt_unlock );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment