msxml3: Dump set node value.

This commit is contained in:
Nikolay Sivov 2010-11-08 00:50:38 +03:00 committed by Alexandre Julliard
parent ec1ab037c8
commit 84aba12a28
1 changed files with 2 additions and 0 deletions

View File

@ -142,6 +142,7 @@ HRESULT node_set_content(xmlnode *This, LPCWSTR value)
{
xmlChar *str;
TRACE("(%p)->(%s)\n", This, debugstr_w(value));
str = xmlChar_from_wchar(value);
if(!str)
return E_OUTOFMEMORY;
@ -155,6 +156,7 @@ static HRESULT node_set_content_escaped(xmlnode *This, LPCWSTR value)
{
xmlChar *str, *escaped;
TRACE("(%p)->(%s)\n", This, debugstr_w(value));
str = xmlChar_from_wchar(value);
if(!str)
return E_OUTOFMEMORY;