wbemprox/tests: Don't use infinite timeouts.

This commit is contained in:
Hans Leidekker 2014-03-21 19:01:09 +01:00 committed by Alexandre Julliard
parent 5752d48353
commit 6e7440e9b1
1 changed files with 1 additions and 1 deletions

View File

@ -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)