xmllite: Don't use HRESULT codes for BOOL retval (PVS-Studio).
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
9cede2f0a6
commit
dc72103a1d
|
@ -2855,7 +2855,7 @@ static HRESULT WINAPI xmlreader_GetDepth(IXmlReader* iface, UINT *depth)
|
|||
static BOOL WINAPI xmlreader_IsEOF(IXmlReader* iface)
|
||||
{
|
||||
FIXME("(%p): stub\n", iface);
|
||||
return E_NOTIMPL;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
static const struct IXmlReaderVtbl xmlreader_vtbl =
|
||||
|
|
Loading…
Reference in New Issue