Update RDPWrap.cpp

master
FusixGit 10 years ago
parent 8b85f43605
commit 9033bd91f1

@ -239,11 +239,14 @@ BOOL __stdcall GetFileVersion(LPCWSTR lptstrFilename, FILE_VERSION *FileVersion)
bool OverrideSL(LPWSTR ValueName, DWORD *Value)
{
INI_VAR_DWORD Variable = {0};
if (IniFile->VariableExists(INI, "SLPolicy", ValueName))
{
if (!(IniFile->GetVariableInSection("SLPolicy", ValueName, Value))) *Value = 0;
if (!(IniFile->GetVariableInSection("SLPolicy", ValueName, &Variable))) *Value = 0;
return true;
}
*Value = Variable.ValueDec;
return false;
}
@ -482,8 +485,8 @@ void Hook()
AlreadyHooked = true;
WriteToLog("Loading configuration...\r\n");
*IniFile = new INI_FILE(ExtractFilePath(GetBinaryPath()) + L"rdpwrap.ini");
if (*IniFile == NULL)
IniFile = new INI_FILE(ExtractFilePath(GetBinaryPath()) + L"rdpwrap.ini");
if (IniFile == NULL)
{
WriteToLog("Error: Failed to load configuration\r\n");
return;
@ -822,4 +825,4 @@ void WINAPI SvchostPushServiceGlobals(void *lpGlobalData)
if (!AlreadyHooked) Hook();
if (_SvchostPushServiceGlobals != NULL) _SvchostPushServiceGlobals(lpGlobalData);
}
}

Loading…
Cancel
Save