Update C++ projects to VS2019, fix warnings/errors

This commit is contained in:
elasota
2021-10-22 22:01:14 -04:00
parent 0706640bc9
commit 9ba15c6d78
35 changed files with 99 additions and 97 deletions

View File

@@ -403,7 +403,7 @@ XADPrefixCode *StuffIt13Decompressor::allocAndParseCodeOfSize(int numcodes, XADP
{
unsigned int bits;
if (!CSInputNextBitStringLE(input, 3, bits))
return false;
return nullptr;
val = bits + 2;
while (val--)
@@ -414,7 +414,7 @@ XADPrefixCode *StuffIt13Decompressor::allocAndParseCodeOfSize(int numcodes, XADP
{
unsigned int bits;
if (!CSInputNextBitStringLE(input, 6, bits))
return false;
return nullptr;
val = bits + 10;
while (val--)