Commit f2f57152 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wbemprox: Return NULL for Win32_BIOS.IdentificationCode.

parent 1e32ae8b
...@@ -1066,7 +1066,7 @@ static const struct record_baseboard data_baseboard[] = ...@@ -1066,7 +1066,7 @@ static const struct record_baseboard data_baseboard[] =
}; };
static const struct record_bios data_bios[] = static const struct record_bios data_bios[] =
{ {
{ bios_descriptionW, bios_descriptionW, bios_manufacturerW, bios_nameW, bios_releasedateW, bios_serialnumberW, { bios_descriptionW, NULL, bios_manufacturerW, bios_nameW, bios_releasedateW, bios_serialnumberW,
bios_smbiosbiosversionW, bios_versionW } bios_smbiosbiosversionW, bios_versionW }
}; };
static const struct record_computersystemproduct data_compsysproduct[] = static const struct record_computersystemproduct data_compsysproduct[] =
......
...@@ -310,7 +310,6 @@ static void test_Win32_Bios( IWbemServices *services ) ...@@ -310,7 +310,6 @@ static void test_Win32_Bios( IWbemServices *services )
VariantInit( &val ); VariantInit( &val );
hr = IWbemClassObject_Get( obj, identificationcodeW, 0, &val, &type, NULL ); hr = IWbemClassObject_Get( obj, identificationcodeW, 0, &val, &type, NULL );
ok( hr == S_OK, "failed to get identication code %08x\n", hr ); ok( hr == S_OK, "failed to get identication code %08x\n", hr );
todo_wine
ok( V_VT( &val ) == VT_NULL, "unexpected variant type 0x%x\n", V_VT( &val ) ); ok( V_VT( &val ) == VT_NULL, "unexpected variant type 0x%x\n", V_VT( &val ) );
ok( type == CIM_STRING, "unexpected type 0x%x\n", type ); ok( type == CIM_STRING, "unexpected type 0x%x\n", type );
VariantClear( &val ); VariantClear( &val );
......
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