mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:24:00 +02:00
another [] needed after delete
This commit is contained in:
parent
26230cf493
commit
4bf86bb824
1 changed files with 1 additions and 1 deletions
|
@ -88,7 +88,7 @@ template< typename T >
|
|||
void AudioFrameBuffer< T >::deallocateFrames() {
|
||||
if (_frameBuffer) {
|
||||
for (uint32_t i = 0; i < _channelCountMax; ++i) {
|
||||
delete _frameBuffer[i];
|
||||
delete[] _frameBuffer[i];
|
||||
}
|
||||
delete[] _frameBuffer;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue