Added patch to silence repeated wbemprox "timeout not supported" fixme.

This commit is contained in:
Sebastian Lackner
2015-07-09 06:35:48 +02:00
parent d7500bccd1
commit e3bece1c76
5 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
From de11056b08110b83c3ce9e2f90c16280d6c74193 Mon Sep 17 00:00:00 2001
From: Jarkko Korpi <jarkko_korpi@hotmail.com>
Date: Mon, 6 Jul 2015 23:47:07 +0300
Subject: wbemprox: Silence repeated "timeout not supported" fixme.
---
dlls/wbemprox/class.c | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/dlls/wbemprox/class.c b/dlls/wbemprox/class.c
index afb9f8c..5ce0381 100644
--- a/dlls/wbemprox/class.c
+++ b/dlls/wbemprox/class.c
@@ -120,7 +120,11 @@ static HRESULT WINAPI enum_class_object_Next(
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)
+ {
+ static int once;
+ if (!once++) FIXME("timeout not supported\n");
+ }
*puReturned = 0;
if (ec->index >= view->count) return WBEM_S_FALSE;
--
2.4.5

View File

@@ -0,0 +1 @@
Fixes: [37618] Silence repeated wbemprox "timeout not supported" fixme