Kaydet (Commit) 5f15f188 authored tarafından Thomas Arnhold's avatar Thomas Arnhold

warning C4189: local variable is initialized but not referenced

Change-Id: Ic8a76a9ab73a3466fe155e2ca8eecedeb6e810c9
üst 2ccfaafb
...@@ -236,7 +236,7 @@ void extendPath(LPCWSTR szUreBinPath) ...@@ -236,7 +236,7 @@ void extendPath(LPCWSTR szUreBinPath)
lstrcat(sNewPath, L";"); lstrcat(sNewPath, L";");
lstrcat(sNewPath, sEnvPath); lstrcat(sNewPath, sEnvPath);
} }
BOOL bSet = SetEnvironmentVariable(L"PATH", sNewPath); SetEnvironmentVariable(L"PATH", sNewPath);
delete[] sEnvPath; delete[] sEnvPath;
delete[] sNewPath; delete[] sNewPath;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment