[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:
Thomas Faber 2021-11-21 09:34:07 -05:00
parent 0af3689c2e
commit d84022d7fd
No known key found for this signature in database
GPG key ID: 076E7C3D44720826

View file

@ -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 */