Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
f2f57152
Commit
f2f57152
authored
Oct 05, 2016
by
Hans Leidekker
Committed by
Alexandre Julliard
Oct 05, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wbemprox: Return NULL for Win32_BIOS.IdentificationCode.
Signed-off-by:
Hans Leidekker
<
hans@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
1e32ae8b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
builtin.c
dlls/wbemprox/builtin.c
+1
-1
query.c
dlls/wbemprox/tests/query.c
+0
-1
No files found.
dlls/wbemprox/builtin.c
View file @
f2f57152
...
...
@@ -1066,7 +1066,7 @@ static const struct record_baseboard data_baseboard[] =
};
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
}
};
static
const
struct
record_computersystemproduct
data_compsysproduct
[]
=
...
...
dlls/wbemprox/tests/query.c
View file @
f2f57152
...
...
@@ -310,7 +310,6 @@ static void test_Win32_Bios( IWbemServices *services )
VariantInit
(
&
val
);
hr
=
IWbemClassObject_Get
(
obj
,
identificationcodeW
,
0
,
&
val
,
&
type
,
NULL
);
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
(
type
==
CIM_STRING
,
"unexpected type 0x%x
\n
"
,
type
);
VariantClear
(
&
val
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment