SVN commit 609448 by fidler: fix uninitialized value M +1 -0 kstmatrix.cpp --- branches/work/kst/hierarchy/kst/src/libkst/kstmatrix.cpp #609447:609448 @@ -41,6 +41,7 @@ _nX = nX; _nY = nY; + _NS = _nX * _nY; _minX = minX; _minY = minY; _stepX = stepX;