You've already forked wine-staging
mirror of
https://gitlab.winehq.org/wine/wine-staging.git
synced 2025-09-12 18:50:20 -07:00
kernel32-GetSystemTimes: Fix invalid value passed to NtQuerySystemInformation.
This commit is contained in:
@@ -76,7 +76,7 @@ index 21ac120..b877adc 100644
|
||||
+ return FALSE;
|
||||
+ }
|
||||
+
|
||||
+ status = NtQuerySystemInformation( SystemProcessorPerformanceInformation, sppi, sizeof(*sppi),
|
||||
+ status = NtQuerySystemInformation( SystemProcessorPerformanceInformation, sppi, sizeof(*sppi) * sbi.NumberOfProcessors,
|
||||
+ &ret_size );
|
||||
+ if (status != STATUS_SUCCESS)
|
||||
+ {
|
||||
|
@@ -1,4 +1,4 @@
|
||||
Author: Louis Lenders / Erich E. Hoover
|
||||
Subject: Implement GetSystemTimes.
|
||||
Revision: 2
|
||||
Revision: 3
|
||||
Fixes: [19813] Support for GetSystemTimes
|
||||
|
Reference in New Issue
Block a user