SVN commit 609722 by fidler:
fix new[]/delete mismatch
M +1 -1 kstcsd.cpp
--- branches/work/kst/hierarchy/kst/src/libkstmath/kstcsd.cpp #609721:609722
@@ -213,7 +213,7 @@
xSize++;
}
- delete tempOutput;
+ delete[] tempOutput;
double frequencyStep = .5*_frequency/(double)(tempOutputLen-1);