Commit 84aba12a authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

msxml3: Dump set node value.

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