msxml3: Don't force put_nodeValue return value.

This commit is contained in:
Nikolay Sivov 2010-11-04 19:16:12 +03:00 committed by Alexandre Julliard
parent a353a91f32
commit 6d48656fb2
1 changed files with 2 additions and 2 deletions

View File

@ -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(