msxml3: Initialise output interface pointers to NULL in xmlnodelist_QueryInterface and xmlnodelist_nextNode.
This commit is contained in:
parent
276e223bcb
commit
6dd935bc33
|
@ -197,6 +197,7 @@ static HRESULT WINAPI xmlnodelist_QueryInterface(
|
|||
else
|
||||
{
|
||||
FIXME("interface %s not implemented\n", debugstr_guid(riid));
|
||||
*ppvObject = NULL;
|
||||
return E_NOINTERFACE;
|
||||
}
|
||||
|
||||
|
@ -360,6 +361,8 @@ static HRESULT WINAPI xmlnodelist_nextNode(
|
|||
|
||||
TRACE("%p %p\n", This, nextItem );
|
||||
|
||||
*nextItem = NULL;
|
||||
|
||||
if(This->enum_children)
|
||||
top_level_node = &This->top_level_node;
|
||||
|
||||
|
|
Loading…
Reference in New Issue