Skip to content
This repository has been archived by the owner. It is now read-only.
Permalink
Browse files
Fixes for CVbFile
  • Loading branch information
Filip Gawin committed Jan 6, 2021
1 parent 145bd24 commit 36996af82b9f4b8d9d20335f8141347a51304e02
Showing with 4 additions and 4 deletions.
  1. +4 −4 src/audio/oal/stream.cpp
@@ -664,11 +664,11 @@ class CVbFile : public IDecoder
if (pFile)
{
fclose(pFile);
delete decoders;
delete[] decoders;
for (int i = 0; i < m_nChannels; i++)
delete ppTempBuffers[i];
delete ppTempBuffers;
delete buffers;
delete[] ppTempBuffers[i];
delete[] ppTempBuffers;
delete[] buffers;
}
}

0 comments on commit 36996af

Please sign in to comment.