advapi32: Check for NULL ptr.

This commit is contained in:
Marcus Meissner 2008-10-04 10:35:32 +02:00 committed by Alexandre Julliard
parent 4785c2fa2d
commit 49c1f1f464
1 changed files with 2 additions and 1 deletions

View File

@ -3147,7 +3147,8 @@ DWORD WINAPI SetEntriesInAclA( ULONG count, PEXPLICIT_ACCESSA pEntries,
PACL OldAcl, PACL* NewAcl )
{
FIXME("%d %p %p %p\n",count,pEntries,OldAcl,NewAcl);
*NewAcl = NULL;
if (NewAcl)
*NewAcl = NULL;
return ERROR_SUCCESS;
}