Merge pull request #2891 from nisargthakkar:dims_zero_on_release

pull/3346/head
Roman Donchenko 11 years ago committed by OpenCV Buildbot
commit b21b8ff9d7
  1. 3
      modules/core/include/opencv2/core/mat.hpp

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

Loading…
Cancel
Save