Resampler: Fix non-array delete for filter taps

Change-Id: I59cdb01809da5940c74aaae9d17f413aefbf04b2
Fixes: Coverity CID 149349
This commit is contained in:
Tom Tsou 2017-03-30 19:31:09 -07:00 committed by Tom Tsou
parent 2af14407a8
commit 5d2a36a113
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ bool Resampler::initFilters(float bw)
}
}
delete proto;
delete[] proto;
return true;
}