Commit 6d48656f authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msxml3: Don't force put_nodeValue return value.

parent a353a91f
......@@ -189,7 +189,7 @@ HRESULT node_put_value(xmlnode *This, VARIANT *value)
hr = node_set_content(This, V_BSTR(&string_value));
VariantClear(&string_value);
return S_OK;
return hr;
}
HRESULT node_put_value_escaped(xmlnode *This, VARIANT *value)
......@@ -207,7 +207,7 @@ HRESULT node_put_value_escaped(xmlnode *This, VARIANT *value)
hr = node_set_content_escaped(This, V_BSTR(&string_value));
VariantClear(&string_value);
return S_OK;
return hr;
}
static HRESULT get_node(
......
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