[PATCH 4/4] Dump set node value

Nikolay Sivov nsivov at codeweavers.com
Sun Nov 7 15:50:38 CST 2010


---
 dlls/msxml3/node.c |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/dlls/msxml3/node.c b/dlls/msxml3/node.c
index f01c00e..221abc2 100644
--- 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;
-- 
1.5.6.5



--------------080009010606010608010005--



More information about the wine-patches mailing list