ntdll: Remove superfluous "not NULL" check for the count arg.
This commit is contained in:
parent
be6ef9158d
commit
aef5374c8b
|
@ -2630,7 +2630,7 @@ NTSTATUS WINAPI NtGetWriteWatch( HANDLE process, ULONG flags, PVOID base, SIZE_T
|
|||
if (!addresses) return STATUS_ACCESS_VIOLATION;
|
||||
|
||||
TRACE( "%p %x %p-%p %p %lu\n", process, flags, base, (char *)base + size,
|
||||
addresses, count ? *count : 0 );
|
||||
addresses, *count );
|
||||
|
||||
server_enter_uninterrupted_section( &csVirtual, &sigset );
|
||||
|
||||
|
|
Loading…
Reference in New Issue