mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-12-22 21:10:01 +00:00
Fixes for CVbFile
This commit is contained in:
parent
145bd243e8
commit
36996af82b
|
@ -664,11 +664,11 @@ public:
|
||||||
if (pFile)
|
if (pFile)
|
||||||
{
|
{
|
||||||
fclose(pFile);
|
fclose(pFile);
|
||||||
delete decoders;
|
delete[] decoders;
|
||||||
for (int i = 0; i < m_nChannels; i++)
|
for (int i = 0; i < m_nChannels; i++)
|
||||||
delete ppTempBuffers[i];
|
delete[] ppTempBuffers[i];
|
||||||
delete ppTempBuffers;
|
delete[] ppTempBuffers;
|
||||||
delete buffers;
|
delete[] buffers;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue