Merge pull request #2891 from nisargthakkar:dims_zero_on_release

This commit is contained in:
Roman Donchenko 2014-06-25 16:27:33 +04:00 committed by OpenCV Buildbot
commit b21b8ff9d7

View File

@ -366,7 +366,8 @@ inline void Mat::release()
if( refcount && CV_XADD(refcount, -1) == 1 )
deallocate();
data = datastart = dataend = datalimit = 0;
size.p[0] = 0;
for(int i = 0; i < dims; i++)
size.p[i] = 0;
refcount = 0;
}