From: Jarkko Korpi Subject: wbemprox: Silence wbemprox no timeout fixme Message-Id: Date: Wed, 15 Jul 2015 00:01:34 +0000 for bug https://bugs.winehq.org/show_bug.cgi?id=37618 From 178d37547dc297be4b4697bae2fbd46ec74377d0 Mon Sep 17 00:00:00 2001 From: Jarkko Korpi Date: Mon, 6 Jul 2015 23:47:07 +0300 Subject: Silence wbemprox no timeout fixme --- dlls/wbemprox/class.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dlls/wbemprox/class.c b/dlls/wbemprox/class.c index afb9f8c..5e36cd5 100644 --- a/dlls/wbemprox/class.c +++ b/dlls/wbemprox/class.c @@ -115,13 +115,15 @@ static HRESULT WINAPI enum_class_object_Next( struct enum_class_object *ec = impl_from_IEnumWbemClassObject( iface ); struct view *view = ec->query->view; HRESULT hr; + static int fixme_shown; TRACE("%p, %d, %u, %p, %p\n", iface, lTimeout, uCount, apObjects, puReturned); if (!uCount) return WBEM_S_FALSE; if (!apObjects || !puReturned) return WBEM_E_INVALID_PARAMETER; - if (lTimeout != WBEM_INFINITE) FIXME("timeout not supported\n"); - + if (lTimeout != WBEM_INFINITE) { + if (!fixme_shown++) FIXME("timeout not supported\n"); + } *puReturned = 0; if (ec->index >= view->count) return WBEM_S_FALSE; -- 1.9.1