CVS commit by staikos: memory error found by regression tests M +1 -1 enodes.cpp 1.34 --- kdeextragear-2/kst/kst/enodes.cpp #1.33:1.34 @@ -340,5 +340,5 @@ Function::~Function() { delete[] _outScalars; for (uint i = 0; i < _outputVectorCnt; ++i) { - delete[] _outVectors[i]; + free(_outVectors[i]); } delete[] _outVectors;