Commit 49c1f1f4 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

advapi32: Check for NULL ptr.

parent 4785c2fa
......@@ -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;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment