Michael Stefaniuc : msxml3/tests: Check the correct return value.

Alexandre Julliard julliard at winehq.org
Wed May 16 14:22:39 CDT 2012


Module: wine
Branch: master
Commit: e86063d68603ba7c787ec84f422d05bf3d5f3f45
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=e86063d68603ba7c787ec84f422d05bf3d5f3f45

Author: Michael Stefaniuc <mstefani at redhat.de>
Date:   Wed May 16 10:40:14 2012 +0200

msxml3/tests: Check the correct return value.

---

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

diff --git a/dlls/msxml3/tests/domdoc.c b/dlls/msxml3/tests/domdoc.c
index 2aa2906..d4ff6a2 100644
--- a/dlls/msxml3/tests/domdoc.c
+++ b/dlls/msxml3/tests/domdoc.c
@@ -2656,7 +2656,7 @@ if (0)
 
         /* baseName */
         str = (BSTR)0xdeadbeef;
-        IXMLDOMComment_get_baseName(node_comment, &str);
+        r = IXMLDOMComment_get_baseName(node_comment, &str);
         ok(r == S_FALSE, "ret %08x\n", r );
         ok(str == NULL, "Expected NULL\n");
 




More information about the wine-cvs mailing list