advapi32: Add some input parameter checks to GetNumberOfEventLogRecords.
This commit is contained in:
parent
215ca8a4d7
commit
de72f40580
|
@ -265,7 +265,18 @@ BOOL WINAPI GetNumberOfEventLogRecords( HANDLE hEventLog, PDWORD NumberOfRecords
|
|||
{
|
||||
FIXME("(%p,%p) stub\n", hEventLog, NumberOfRecords);
|
||||
|
||||
if (!NumberOfRecords) return FALSE;
|
||||
if (!NumberOfRecords)
|
||||
{
|
||||
SetLastError(ERROR_INVALID_PARAMETER);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
if (!hEventLog)
|
||||
{
|
||||
SetLastError(ERROR_INVALID_HANDLE);
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
*NumberOfRecords = 0;
|
||||
|
||||
return TRUE;
|
||||
|
|
|
@ -158,25 +158,20 @@ static void test_count(void)
|
|||
SetLastError(0xdeadbeef);
|
||||
ret = GetNumberOfEventLogRecords(NULL, NULL);
|
||||
ok(!ret, "Expected failure\n");
|
||||
todo_wine
|
||||
ok(GetLastError() == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
|
||||
|
||||
SetLastError(0xdeadbeef);
|
||||
count = 0xdeadbeef;
|
||||
ret = GetNumberOfEventLogRecords(NULL, &count);
|
||||
todo_wine
|
||||
{
|
||||
ok(!ret, "Expected failure\n");
|
||||
ok(GetLastError() == ERROR_INVALID_HANDLE, "Expected ERROR_INVALID_HANDLE, got %d\n", GetLastError());
|
||||
ok(count == 0xdeadbeef, "Expected count to stay unchanged\n");
|
||||
}
|
||||
|
||||
handle = OpenEventLogA(NULL, "Application");
|
||||
|
||||
SetLastError(0xdeadbeef);
|
||||
ret = GetNumberOfEventLogRecords(handle, NULL);
|
||||
ok(!ret, "Expected failure\n");
|
||||
todo_wine
|
||||
ok(GetLastError() == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %d\n", GetLastError());
|
||||
|
||||
count = 0xdeadbeef;
|
||||
|
|
Loading…
Reference in New Issue