wbemprox: Report the real OS version.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=50580
Signed-off-by: Hans Leidekker <hans@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
(cherry picked from commit ba06f7a541)
Signed-off-by: Michael Stefaniuc <mstefani@winehq.org>
This commit is contained in:
Hans Leidekker 2021-02-02 14:25:20 +01:00 committed by Michael Stefaniuc
parent dff027f211
commit 18ab8254e9
1 changed files with 2 additions and 2 deletions

View File

@ -3514,13 +3514,13 @@ static enum fill_status fill_operatingsystem( struct table *table, const struct
{
struct record_operatingsystem *rec;
enum fill_status status = FILL_STATUS_UNFILTERED;
OSVERSIONINFOEXW ver;
RTL_OSVERSIONINFOEXW ver;
UINT row = 0;
if (!resize_table( table, 1, sizeof(*rec) )) return FILL_STATUS_FAILED;
ver.dwOSVersionInfoSize = sizeof(ver);
GetVersionExW( (OSVERSIONINFOW *)&ver );
RtlGetVersion( &ver );
rec = (struct record_operatingsystem *)table->data;
rec->buildnumber = get_osbuildnumber( &ver );