[NTOS:SE] Partially revert 0129de2

The continue statements do not server any useful purpose in these loops so they're basically pointless. These have been introduced by mistake so my bad.
This commit is contained in:
George Bișoc
2021-11-05 10:13:45 +01:00
parent 8110a66b08
commit 05d52aba2b

View File

@@ -1217,7 +1217,6 @@ SepDuplicateToken(
*/
SepRemoveUserGroupToken(AccessToken, GroupsIndex);
GroupsIndex--;
continue;
}
}
@@ -1243,7 +1242,6 @@ SepDuplicateToken(
*/
SepRemovePrivilegeToken(AccessToken, PrivilegesIndex);
PrivilegesIndex--;
continue;
}
}
}