Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
afd1e40e
Commit
afd1e40e
authored
Oct 14, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Oct 14, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wmiutils: Don't return HRESULT codes for BOOL retval (PVS-Studio).
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
6c2bda6e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
path.c
dlls/wmiutils/path.c
+4
-4
No files found.
dlls/wmiutils/path.c
View file @
afd1e40e
...
...
@@ -1211,7 +1211,7 @@ static BOOL WINAPI path_IsRelative(
LPWSTR
wszNamespace
)
{
FIXME
(
"%p, %s, %s
\n
"
,
iface
,
debugstr_w
(
wszMachine
),
debugstr_w
(
wszNamespace
));
return
E_NOTIMPL
;
return
FALSE
;
}
static
BOOL
WINAPI
path_IsRelativeOrChild
(
...
...
@@ -1221,7 +1221,7 @@ static BOOL WINAPI path_IsRelativeOrChild(
LONG
lFlags
)
{
FIXME
(
"%p, %s, %s, 0x%x
\n
"
,
iface
,
debugstr_w
(
wszMachine
),
debugstr_w
(
wszNamespace
),
lFlags
);
return
E_NOTIMPL
;
return
FALSE
;
}
static
BOOL
WINAPI
path_IsLocal
(
...
...
@@ -1229,7 +1229,7 @@ static BOOL WINAPI path_IsLocal(
LPCWSTR
wszMachine
)
{
FIXME
(
"%p, %s
\n
"
,
iface
,
debugstr_w
(
wszMachine
));
return
E_NOTIMPL
;
return
FALSE
;
}
static
BOOL
WINAPI
path_IsSameClassName
(
...
...
@@ -1237,7 +1237,7 @@ static BOOL WINAPI path_IsSameClassName(
LPCWSTR
wszClass
)
{
FIXME
(
"%p, %s
\n
"
,
iface
,
debugstr_w
(
wszClass
));
return
E_NOTIMPL
;
return
FALSE
;
}
static
const
struct
IWbemPathVtbl
path_vtbl
=
...
...
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