This commit is contained in:
Shauren
2023-02-06 20:08:39 +01:00
parent 9932046499
commit fd154940ed
39 changed files with 2116 additions and 1675 deletions

View File

@@ -41,7 +41,7 @@ TCascFile::TCascFile(TCascStorage * ahs, PCASC_CKEY_ENTRY apCKeyEntry)
TCascFile::~TCascFile()
{
// Free all stuff related to file spans
if (pFileSpan != NULL)
if(pFileSpan != NULL)
{
PCASC_FILE_SPAN pSpanPtr = pFileSpan;
@@ -430,7 +430,7 @@ bool WINAPI CascCloseFile(HANDLE hFile)
TCascFile * hf;
hf = TCascFile::IsValid(hFile);
if (hf != NULL)
if(hf != NULL)
{
delete hf;
return true;