msxml3: Correct IXMLDOMComment appendData.
This commit is contained in:
parent
d3597f5e13
commit
d9b1bf541f
|
@ -600,10 +600,7 @@ static HRESULT WINAPI domcomment_appendData(
|
||||||
if(xmlTextConcat(pDOMNode->node, pContent, SysStringLen(p) ) == 0)
|
if(xmlTextConcat(pDOMNode->node, pContent, SysStringLen(p) ) == 0)
|
||||||
hr = S_OK;
|
hr = S_OK;
|
||||||
else
|
else
|
||||||
{
|
|
||||||
hr = E_FAIL;
|
hr = E_FAIL;
|
||||||
xmlFree(pContent);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
hr = E_FAIL;
|
hr = E_FAIL;
|
||||||
|
|
Loading…
Reference in New Issue