Fix for Bug#3757: All dimension values are 0 after release is called

pull/2891/head
Nisarg Thakkar 11 years ago
parent 5042ab1f32
commit 98421e5970
  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