VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common
diff options
context:
space:
mode:
authorMounir IDRASSI <mounir.idrassi@idrix.fr>2019-03-02 14:49:24 +0100
committerMounir IDRASSI <mounir.idrassi@idrix.fr>2019-03-02 14:50:22 +0100
commitea88c6175c19bbc2c063be63f64705733112ff0d (patch)
treea09953b85d8e096bac210248c799a5e2a446730e /src/Common
parentf7bc58b38f3e61a387849ff1d840bb32a7b9b4c4 (diff)
downloadVeraCrypt-ea88c6175c19bbc2c063be63f64705733112ff0d.tar.gz
VeraCrypt-ea88c6175c19bbc2c063be63f64705733112ff0d.zip
Windows: fix compilation error
Diffstat (limited to 'src/Common')
-rw-r--r--src/Common/Dlgcode.c2
1 files changed, 1 insertions, 1 deletions
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;
}