Commit 94c7992f authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

kernel32: DLL entry point is no longer called with PEB lock held.

parent 094e4657
......@@ -1141,10 +1141,6 @@ static BOOL WINAPI dll_entry_point(HINSTANCE hinst, DWORD reason, LPVOID param)
DWORD ret;
ok(!inside_loader_lock, "inside_loader_lock should not be set\n");
/* FIXME: remove once Wine is fixed */
if (inside_peb_lock && reason == DLL_PROCESS_DETACH) todo_wine
ok(!inside_peb_lock, "inside_peb_lock should not be set\n");
else
ok(!inside_peb_lock, "inside_peb_lock should not be set\n");
switch (reason)
......
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