diff options
author | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2021-08-29 15:23:59 +0200 |
---|---|---|
committer | Mounir IDRASSI <mounir.idrassi@idrix.fr> | 2021-08-30 00:26:57 +0200 |
commit | fb1a4893b8dff55f5669e935a419ea87b41f62f6 (patch) | |
tree | f4781d18ef50917ec2b323506401d2d54c7e2109 /src/Driver/Ntdriver.c | |
parent | d9e1d57a5323baa821f9962476929b85677ab469 (diff) | |
download | VeraCrypt-fb1a4893b8dff55f5669e935a419ea87b41f62f6.tar.gz VeraCrypt-fb1a4893b8dff55f5669e935a419ea87b41f62f6.zip |
Windows: Fix some VS static analyzed warnings
Diffstat (limited to 'src/Driver/Ntdriver.c')
-rw-r--r-- | src/Driver/Ntdriver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Driver/Ntdriver.c b/src/Driver/Ntdriver.c index ca840fea..c778cfed 100644 --- a/src/Driver/Ntdriver.c +++ b/src/Driver/Ntdriver.c @@ -4612,7 +4612,7 @@ void EnsureNullTerminatedString (wchar_t *str, size_t maxSizeInBytes) void *AllocateMemoryWithTimeout (size_t size, int retryDelay, int timeout) { LARGE_INTEGER waitInterval; - waitInterval.QuadPart = retryDelay * -10000; + waitInterval.QuadPart = ((LONGLONG)retryDelay) * -10000; ASSERT (KeGetCurrentIrql() <= APC_LEVEL); ASSERT (retryDelay > 0 && retryDelay <= timeout); |