mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-09 00:04: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 ()
|
Limiter::Upsampler::fini ()
|
||||||
{
|
{
|
||||||
for (int i = 0; i < _nchan; ++i) {
|
for (int i = 0; i < _nchan; ++i) {
|
||||||
delete _z[i];
|
delete[] _z[i];
|
||||||
}
|
}
|
||||||
delete _z;
|
delete[] _z;
|
||||||
_nchan = 0;
|
_nchan = 0;
|
||||||
_z = 0;
|
_z = 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue