UI/updater: Delete visual studio runtimes after execution

This commit is contained in:
jp9000 2018-03-18 11:12:14 -07:00
parent a6c65cdbf3
commit ceadde0838

View file

@ -1071,13 +1071,14 @@ static bool UpdateVS2017Redists(json_t *root)
WaitForSingleObject(pi.hProcess, INFINITE);
CloseHandle(pi.hProcess);
} else {
DeleteFile(destPath.c_str());
Status(L"Update failed: Could not execute "
L"%s (error code %d)",
L"Visual C++ 2017 Redistributable",
(int)GetLastError());
}
DeleteFile(destPath.c_str());
waitResult = WaitForSingleObject(cancelRequested, 0);
if (waitResult == WAIT_OBJECT_0) {
return false;