https://git.reactos.org/?p=reactos.git;a=commitdiff;h=8e0da736b7054b149dd4f…
commit 8e0da736b7054b149dd4feef97d42661fab41a09
Author: George Bișoc <george.bisoc(a)reactos.org>
AuthorDate: Mon Jun 13 20:12:32 2022 +0200
Commit: George Bișoc <george.bisoc(a)reactos.org>
CommitDate: Mon Jun 13 20:12:32 2022 +0200
[NTOS:SE] Fix MSVC build
---
ntoskrnl/se/tokencls.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ntoskrnl/se/tokencls.c b/ntoskrnl/se/tokencls.c
index 2a6806ba3d8..24adad4f61c 100644
--- a/ntoskrnl/se/tokencls.c
+++ b/ntoskrnl/se/tokencls.c
@@ -481,7 +481,7 @@ NtQueryInformationToken(
NTSTATUS Status;
KPROCESSOR_MODE PreviousMode;
PTOKEN Token;
- ULONG RequiredLength;
+ ULONG RequiredLength = 0;
union
{
PSID PSid;