Commit 7173dac6 authored by Steve Dower's avatar Steve Dower

Update Windows installer for new CRT version.

parent 3b85377a
......@@ -2343,7 +2343,7 @@ private:
return FALSE;
}
// Check whether at least CRT v10.0.9920.0 is available.
// Check whether at least CRT v10.0.9924.0 is available.
// It should only be installed as a Windows Update package, which means
// we don't need to worry about 32-bit/64-bit.
// However, since the WU package does not include vcruntime140.dll, we
......@@ -2373,7 +2373,7 @@ private:
BOOL result = FALSE;
if (VerQueryValueW(pData, L"\\", (LPVOID*)&ffi, &cb) &&
ffi->dwFileVersionMS == 0x000A0000 && ffi->dwFileVersionLS >= 0x26C00000) {
ffi->dwFileVersionMS == 0x000A0000 && ffi->dwFileVersionLS >= 0x26C40000) {
result = TRUE;
}
......
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