Jacek Caban : mshtml: Removed ref count tests that fail on some Windows.

Alexandre Julliard julliard at winehq.org
Thu Dec 10 10:01:00 CST 2009


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

Author: Jacek Caban <jacek at codeweavers.com>
Date:   Thu Dec 10 01:10:20 2009 +0100

mshtml: Removed ref count tests that fail on some Windows.

---

 dlls/mshtml/tests/events.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/dlls/mshtml/tests/events.c b/dlls/mshtml/tests/events.c
index fc10510..84bfae2 100644
--- a/dlls/mshtml/tests/events.c
+++ b/dlls/mshtml/tests/events.c
@@ -1801,7 +1801,6 @@ static void run_test(const char *str, testfunc_t test)
 {
     IHTMLDocument2 *doc;
     IHTMLElement *body = NULL;
-    ULONG ref;
     MSG msg;
     HRESULT hres;
 
@@ -1837,8 +1836,7 @@ static void run_test(const char *str, testfunc_t test)
     }
 
     set_client_site(doc, FALSE);
-    ref = IHTMLDocument2_Release(doc);
-    ok(!ref, "ref = %d\n", ref);
+    IHTMLDocument2_Release(doc);
 }
 
 static LRESULT WINAPI wnd_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)




More information about the wine-cvs mailing list