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

This commit is contained in:
Andrew Talbot 2008-07-11 21:58:28 +01:00 committed by Alexandre Julliard
parent ce2184e2f1
commit dd0a22420a
1 changed files with 1 additions and 1 deletions

View File

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