[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
This commit is contained in:
Giannis Adamopoulos 2011-04-29 21:59:48 +00:00
parent 8a518bb78d
commit b68a7983f1

View file

@ -968,7 +968,9 @@ int explorer_main(HINSTANCE hInstance, LPTSTR lpCmdLine, int cmdShow)
}
#endif
return Window::MessageLoop();
Window::MessageLoop();
return 1;
}