kernel32: Prevent endless loop if NtQuerySystemInformation fails.

This commit is contained in:
Sebastian Lackner 2013-12-31 17:48:42 +01:00 committed by Alexandre Julliard
parent 4734771f28
commit 3caa4e035d
1 changed files with 1 additions and 1 deletions

View File

@ -209,7 +209,7 @@ static BOOL fetch_process_thread( DWORD flags, SYSTEM_PROCESS_INFORMATION** pspi
break;
default:
SetLastError( RtlNtStatusToDosError( status ) );
break;
return FALSE;
}
}
}