Details
-
Bug
-
Resolution: Unresolved
-
Major
-
None
-
None
Description
reactos-bootcd-0.4.16-dev-2647-ge5bf20d-x86-gcc-lin-dbg
This bug from upstream Wine ( https://bugs.winehq.org/show_bug.cgi?id=55324 ) also affects ReactOS: "IsOS" API return "FALSE" for OS_XPORGREATER if used with version 6.0, making ReactOS Vista+ bringup to be recognized as "Not XP or Greater"
Trivial fix, as proposed in patch attached to Wine Ticket
case OS_XPORGREATER: |
- ISOS_RETURN(platform == VER_PLATFORM_WIN32_NT && majorv >= 5 && minorv >= 1); |
+ ISOS_RETURN(platform == VER_PLATFORM_WIN32_NT && ( (majorv >= 5 && minorv >= 1) || majorv >= 6) ); |