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

gameux: Call interface methods properly.

parent 21897a96
......@@ -376,7 +376,7 @@ static HRESULT GAMEUX_ParseGameDefinition(
IXMLDOMElement_Release(nextElement);
}
IXMLDOMElement_Release(nextNode);
IXMLDOMNode_Release(nextNode);
}
}
while(hr == S_OK);
......
......@@ -261,7 +261,7 @@ static HRESULT GAMEUX_updateStatisticsFile(struct GAMEUX_STATS *stats)
SysFreeString(V_BSTR(&vValue));
if(SUCCEEDED(hr))
hr = IXMLDOMElement_appendChild(categoryNode, statisticsNode, &statisticsNode);
hr = IXMLDOMNode_appendChild(categoryNode, statisticsNode, &statisticsNode);
IXMLDOMElement_Release(statisticsElement);
IXMLDOMNode_Release(statisticsNode);
......
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