1
0
mirror of https://github.com/veracrypt/VeraCrypt.git synced 2025-11-11 02:58:02 -06:00

Windows: fix compilation warning

This commit is contained in:
Mounir IDRASSI
2016-09-26 14:12:07 +02:00
parent eb3e923091
commit 5dfdc1b4a5

View File

@@ -3236,8 +3236,8 @@ namespace VeraCrypt
{ {
if (statMem.size == statFile.size) if (statMem.size == statFile.size)
{ {
Buffer fileBuf (statFile.size); Buffer fileBuf ((size_t) statFile.size);
Buffer memBuf (statMem.size); Buffer memBuf ((size_t) statMem.size);
zip_file_t* zfMem = zip_fopen_index (zMem, indexMem, 0); zip_file_t* zfMem = zip_fopen_index (zMem, indexMem, 0);
if (zfMem) if (zfMem)
@@ -3249,7 +3249,7 @@ namespace VeraCrypt
{ {
if (0 < zip_fread (zfFile, fileBuf.Ptr (), statFile.size)) if (0 < zip_fread (zfFile, fileBuf.Ptr (), statFile.size))
{ {
bMatch = (memcmp (memBuf.Ptr(), fileBuf.Ptr(), statFile.size) == 0); bMatch = (memcmp (memBuf.Ptr(), fileBuf.Ptr(), (size_t) statFile.size) == 0);
} }
zip_fclose (zfFile); zip_fclose (zfFile);
} }