Commit afd1e40e authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

wmiutils: Don't return HRESULT codes for BOOL retval (PVS-Studio).

parent 6c2bda6e
...@@ -1211,7 +1211,7 @@ static BOOL WINAPI path_IsRelative( ...@@ -1211,7 +1211,7 @@ static BOOL WINAPI path_IsRelative(
LPWSTR wszNamespace) LPWSTR wszNamespace)
{ {
FIXME("%p, %s, %s\n", iface, debugstr_w(wszMachine), debugstr_w(wszNamespace)); FIXME("%p, %s, %s\n", iface, debugstr_w(wszMachine), debugstr_w(wszNamespace));
return E_NOTIMPL; return FALSE;
} }
static BOOL WINAPI path_IsRelativeOrChild( static BOOL WINAPI path_IsRelativeOrChild(
...@@ -1221,7 +1221,7 @@ static BOOL WINAPI path_IsRelativeOrChild( ...@@ -1221,7 +1221,7 @@ static BOOL WINAPI path_IsRelativeOrChild(
LONG lFlags) LONG lFlags)
{ {
FIXME("%p, %s, %s, 0x%x\n", iface, debugstr_w(wszMachine), debugstr_w(wszNamespace), 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( static BOOL WINAPI path_IsLocal(
...@@ -1229,7 +1229,7 @@ static BOOL WINAPI path_IsLocal( ...@@ -1229,7 +1229,7 @@ static BOOL WINAPI path_IsLocal(
LPCWSTR wszMachine) LPCWSTR wszMachine)
{ {
FIXME("%p, %s\n", iface, debugstr_w(wszMachine)); FIXME("%p, %s\n", iface, debugstr_w(wszMachine));
return E_NOTIMPL; return FALSE;
} }
static BOOL WINAPI path_IsSameClassName( static BOOL WINAPI path_IsSameClassName(
...@@ -1237,7 +1237,7 @@ static BOOL WINAPI path_IsSameClassName( ...@@ -1237,7 +1237,7 @@ static BOOL WINAPI path_IsSameClassName(
LPCWSTR wszClass) LPCWSTR wszClass)
{ {
FIXME("%p, %s\n", iface, debugstr_w(wszClass)); FIXME("%p, %s\n", iface, debugstr_w(wszClass));
return E_NOTIMPL; return FALSE;
} }
static const struct IWbemPathVtbl path_vtbl = static const struct IWbemPathVtbl path_vtbl =
......
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