[PATCH 4/6] quartz/systemclock: Don't check event handle in SystemClockImpl_AdviseTime().

Zebediah Figura z.figura12 at gmail.com
Wed Mar 13 23:59:08 CDT 2019


Signed-off-by: Zebediah Figura <z.figura12 at gmail.com>
---
 dlls/quartz/systemclock.c       | 3 ---
 dlls/quartz/tests/systemclock.c | 2 +-
 2 files changed, 1 insertion(+), 4 deletions(-)

diff --git a/dlls/quartz/systemclock.c b/dlls/quartz/systemclock.c
index c809ce4bfc..3da309bddf 100644
--- a/dlls/quartz/systemclock.c
+++ b/dlls/quartz/systemclock.c
@@ -270,9 +270,6 @@ static HRESULT WINAPI SystemClockImpl_AdviseTime(IReferenceClock* iface, REFEREN
   TRACE("(%p, 0x%s, 0x%s, %ld, %p)\n", This, wine_dbgstr_longlong(rtBaseTime),
       wine_dbgstr_longlong(rtStreamTime), hEvent, pdwAdviseCookie);
 
-  if (!hEvent) {
-    return E_INVALIDARG;
-  }
   if (0 >= rtBaseTime + rtStreamTime) {
     return E_INVALIDARG;
   }
diff --git a/dlls/quartz/tests/systemclock.c b/dlls/quartz/tests/systemclock.c
index 33a8e6077a..bb89a39680 100644
--- a/dlls/quartz/tests/systemclock.c
+++ b/dlls/quartz/tests/systemclock.c
@@ -113,7 +113,7 @@ static void test_advise(void)
     ok(SUCCEEDED(hr), "Got hr %#x.\n", hr);
 
     hr = IReferenceClock_AdviseTime(clock, current, 500 * 10000, 0, &cookie);
-    todo_wine ok(hr == S_OK, "Got hr %#x.\n", hr);
+    ok(hr == S_OK, "Got hr %#x.\n", hr);
 
     hr = IReferenceClock_AdviseTime(clock, current, 500 * 10000, (HEVENT)event, NULL);
     ok(hr == E_POINTER, "Got hr %#x.\n", hr);
-- 
2.20.1




More information about the wine-devel mailing list