mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 14:54:56 +01:00
Fix Upsampler new/delete mismatch
This commit is contained in:
parent
434bd2486e
commit
c5abb7ecda
1 changed files with 2 additions and 2 deletions
|
|
@ -77,9 +77,9 @@ void
|
|||
Limiter::Upsampler::fini ()
|
||||
{
|
||||
for (int i = 0; i < _nchan; ++i) {
|
||||
delete _z[i];
|
||||
delete[] _z[i];
|
||||
}
|
||||
delete _z;
|
||||
delete[] _z;
|
||||
_nchan = 0;
|
||||
_z = 0;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue