]> granicus.if.org Git - python/commitdiff
Update Windows installer for new CRT version.
authorSteve Dower <steve.dower@microsoft.com>
Sat, 2 May 2015 22:22:51 +0000 (15:22 -0700)
committerSteve Dower <steve.dower@microsoft.com>
Sat, 2 May 2015 22:22:51 +0000 (15:22 -0700)
Tools/msi/bundle/bootstrap/PythonBootstrapperApplication.cpp

index 9b41cee3e9970676811320df2e2f74f9fff6e523..ac92b2ff9e497bf3fa44886f440ee9158ecf02ff 100644 (file)
@@ -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;
         }