Author: gadamopoulos
Date: Fri Apr 29 21:59:48 2011
New Revision: 51499
URL:
http://svn.reactos.org/svn/reactos?rev=51499&view=rev
Log:
[explorer]
- Return 1 when explorer terminates. This value lets winlogon know that explorer
terminated without errors and it doesn't need to restart
Modified:
trunk/reactos/base/shell/explorer/explorer.cpp
Modified: trunk/reactos/base/shell/explorer/explorer.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/base/shell/explorer/explor…
==============================================================================
--- trunk/reactos/base/shell/explorer/explorer.cpp [iso-8859-1] (original)
+++ trunk/reactos/base/shell/explorer/explorer.cpp [iso-8859-1] Fri Apr 29 21:59:48 2011
@@ -968,7 +968,9 @@
}
#endif
- return Window::MessageLoop();
+ Window::MessageLoop();
+
+ return 1;
}