http://git.etersoft.ru/projects
/
wine
/
eterwine.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ec1ab03
)
msxml3: Dump set node value.
author
Nikolay Sivov
<nsivov@codeweavers.com>
Sun, 7 Nov 2010 21:50:38 +0000
(
00:50
+0300)
committer
Alexandre Julliard
<julliard@winehq.org>
Tue, 9 Nov 2010 10:45:04 +0000
(11:45 +0100)
dlls/msxml3/node.c
patch
|
blob
|
blame
|
history
diff --git
a/dlls/msxml3/node.c
b/dlls/msxml3/node.c
index f01c00e25129a09a59f9b69b6782b6a875456a45..221abc26b7a451969f82f2901126c21ea9865d47 100644
(file)
--- a/
dlls/msxml3/node.c
+++ b/
dlls/msxml3/node.c
@@
-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;