forgot to add free() to the previous malloc change

This commit is contained in:
Tetsuo55
2013-06-23 00:14:45 +02:00
parent 02351b77f9
commit 0c9c3c9737
2 changed files with 2 additions and 0 deletions

View File

@ -217,6 +217,7 @@ uint FIRFilter::evaluateFilterMulti(SAMPLETYPE *dest, const SAMPLETYPE *src, uin
sum[c] = 0;
}
}
free(sum);
return numSamples - length;
}