/W4: Fixed bug caused by dead code

Fixed bug caused by calling CBaseFileSystem::Size on a closed file handle, the results weren't used at all which triggered the warning.
This commit is contained in:
Kawe Mazidjatari 2023-04-02 09:35:25 +02:00
parent 1ef5287b56
commit afcbd42e90

View File

@ -477,8 +477,6 @@ void RTech_Decompress_f(const CCommand& args)
FileSystem()->Close(hPakFile);
RPakHeader_t* pHeader = reinterpret_cast<RPakHeader_t*>(pPakBuf);
uint32_t nLen = FileSystem()->Size(hPakFile);
uint16_t flags = (pHeader->m_nFlags[0] << 8) | pHeader->m_nFlags[1];
SYSTEMTIME systemTime;