mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-30 12:23:28 +00:00
[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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user