Commit dd0a2242 authored by Andrew Talbot's avatar Andrew Talbot Committed by Alexandre Julliard

shlwapi: Remove unneeded address-of operator from array name.

parent ce2184e2
......@@ -4399,7 +4399,7 @@ PSECURITY_DESCRIPTOR WINAPI GetShellSecurityDescriptor(PSHELL_USER_PERMISSION *a
{
ret = GetTokenInformation(Token, TokenUser, (void*)tuUser, bufsize, &bufsize );
if (ret)
cur_user = ((PTOKEN_USER)&tuUser)->User.Sid;
cur_user = ((PTOKEN_USER)tuUser)->User.Sid;
CloseHandle(Token);
}
}
......
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