mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
shlwapi: Remove unneeded address-of operator from array name.
This commit is contained in:
parent
ce2184e2f1
commit
dd0a22420a
@ -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);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user