mirror of
https://github.com/reactos/wine.git
synced 2025-02-27 00:08:18 +00:00
msxml3: Dump set node value.
This commit is contained in:
parent
ec1ab037c8
commit
84aba12a28
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user