ntdll: Remove superfluous "not NULL" check for the count arg.

This commit is contained in:
Michael Stefaniuc 2010-05-19 00:50:08 +02:00 committed by Alexandre Julliard
parent be6ef9158d
commit aef5374c8b
1 changed files with 1 additions and 1 deletions

View File

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