[USERINIT]: Addendum to r72823 (sorry for the redundant commits): Fix a use without initialization warning for the 'Success' variable: initialize it to TRUE so that we by default do not perform the main menu loop (in livecd mode).

svn path=/trunk/; revision=72824
This commit is contained in:
Hermès Bélusca-Maïto
2016-09-26 22:52:04 +00:00
parent 3f6ca86312
commit 99b8a71b9d
+1 -2
View File
@@ -577,8 +577,7 @@ wWinMain(IN HINSTANCE hInst,
IN LPWSTR lpszCmdLine,
IN int nCmdShow)
{
BOOL bIsLiveCD;
BOOL Success;
BOOL bIsLiveCD, Success = TRUE;
STATE State;
hInstance = hInst;