Commit 6e7440e9 authored by Hans Leidekker's avatar Hans Leidekker Committed by Alexandre Julliard

wbemprox/tests: Don't use infinite timeouts.

parent 5752d483
......@@ -46,7 +46,7 @@ static HRESULT exec_query( IWbemServices *services, const WCHAR *str, IEnumWbemC
{
VARIANT var;
IEnumWbemClassObject_Next( *result, WBEM_INFINITE, 1, &obj, &count );
IEnumWbemClassObject_Next( *result, 10000, 1, &obj, &count );
if (!count) break;
if (IWbemClassObject_Get( obj, captionW, 0, &var, NULL, NULL ) == WBEM_S_NO_ERROR)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment