Silence several compiler warnings

This commit is contained in:
Vort 2023-02-27 21:35:06 +02:00 committed by R4SAS
parent 10dfe39f5f
commit 5f8820d9d6
2 changed files with 4 additions and 8 deletions

View file

@ -21,7 +21,7 @@ BOOL I2PService::isService()
HWINSTA hWinStation = GetProcessWindowStation();
if (hWinStation != NULL)
{
USEROBJECTFLAGS uof = { 0 };
USEROBJECTFLAGS uof = { FALSE, FALSE, 0 };
if (GetUserObjectInformation(hWinStation, UOI_FLAGS, &uof, sizeof(USEROBJECTFLAGS), NULL) && ((uof.dwFlags & WSF_VISIBLE) == 0))
{
bIsService = TRUE;