diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-03-02 14:49:24 +0100 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2019-03-02 14:50:22 +0100 |
commit | ea88c6175c19bbc2c063be63f64705733112ff0d (patch) | |
tree | a09953b85d8e096bac210248c799a5e2a446730e /src/Common/Dlgcode.c | |
parent | f7bc58b38f3e61a387849ff1d840bb32a7b9b4c4 (diff) | |
download | VeraCrypt-ea88c6175c19bbc2c063be63f64705733112ff0d.tar.gz VeraCrypt-ea88c6175c19bbc2c063be63f64705733112ff0d.zip |
Windows: fix compilation error
Diffstat (limited to 'src/Common/Dlgcode.c')
-rw-r--r-- | src/Common/Dlgcode.c | 2 |
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; } |