Alexandre Julliard : ntdll: Add missing server_init_process_done() call.
Module: wine Branch: master Commit: 704975f58d7947721f530d202022721c16df466a URL: https://source.winehq.org/git/wine.git/?a=commit;h=704975f58d7947721f530d202... Author: Alexandre Julliard <julliard(a)winehq.org> Date: Sat May 30 17:31:45 2020 +0200 ntdll: Add missing server_init_process_done() call. Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=49295 Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/ntdll/server.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dlls/ntdll/server.c b/dlls/ntdll/server.c index ed4e3f2553..ada5e16d4e 100644 --- a/dlls/ntdll/server.c +++ b/dlls/ntdll/server.c @@ -722,6 +722,8 @@ void server_init_process_done(void) NTSTATUS status; int suspend; + unix_funcs->server_init_process_done(); + /* Install signal handlers; this cannot be done earlier, since we cannot * send exceptions to the debugger before the create process event that * is sent by REQ_INIT_PROCESS_DONE.
participants (1)
-
Alexandre Julliard