From ea88c6175c19bbc2c063be63f64705733112ff0d Mon Sep 17 00:00:00 2001 From: Mounir IDRASSI Date: Sat, 2 Mar 2019 14:49:24 +0100 Subject: Windows: fix compilation error --- src/Common/Dlgcode.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Common/Dlgcode.c b/src/Common/Dlgcode.c index 2bc0f7e9..27779f53 100644 --- a/src/Common/Dlgcode.c +++ b/src/Common/Dlgcode.c @@ -13937,7 +13937,7 @@ BOOL EnableProcessProtection() // Retrieve the token information in a TOKEN_USER structure GetTokenInformation(hToken, TokenUser, NULL, 0, &cbBufferSize); - pTokenUser = (PTOKEN_USER) HeapAlloc(GetProcessHeap(), 0, cbBufferSize; + pTokenUser = (PTOKEN_USER) HeapAlloc(GetProcessHeap(), 0, cbBufferSize); if (pTokenUser == NULL) { goto Cleanup; } -- cgit v1.2.3