mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[NTOS:SE] Fix always-true assert in SeTokenCanImpersonate.
Courtesy of VS analysis warning C6289: Incorrect operator: mutual exclusion over || is always a non-zero constant. Did you intend to use && instead?
This commit is contained in:
parent
0af3689c2e
commit
d84022d7fd
1 changed files with 1 additions and 1 deletions
|
@ -3585,7 +3585,7 @@ SeTokenCanImpersonate(
|
|||
* allow impersonation. If we get such levels from the call
|
||||
* then something's seriously wrong.
|
||||
*/
|
||||
ASSERT(ImpersonationLevel != SecurityAnonymous ||
|
||||
ASSERT(ImpersonationLevel != SecurityAnonymous &&
|
||||
ImpersonationLevel != SecurityIdentification);
|
||||
|
||||
/* Time to lock our tokens */
|
||||
|
|
Loading…
Reference in a new issue