From b68a7983f1cf92c375dd42e0fde4792cf0cafe05 Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Fri, 29 Apr 2011 21:59:48 +0000 Subject: [PATCH] [explorer] - Return 1 when explorer terminates. This value lets winlogon know that explorer terminated without errors and it doesn't need to restart svn path=/trunk/; revision=51499 --- reactos/base/shell/explorer/explorer.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/reactos/base/shell/explorer/explorer.cpp b/reactos/base/shell/explorer/explorer.cpp index f555010f142..4e6aee7fd60 100644 --- a/reactos/base/shell/explorer/explorer.cpp +++ b/reactos/base/shell/explorer/explorer.cpp @@ -968,7 +968,9 @@ int explorer_main(HINSTANCE hInstance, LPTSTR lpCmdLine, int cmdShow) } #endif - return Window::MessageLoop(); + Window::MessageLoop(); + + return 1; }