Commit 98421e59 authored by Nisarg Thakkar's avatar Nisarg Thakkar

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

parent 5042ab1f
...@@ -366,7 +366,8 @@ inline void Mat::release() ...@@ -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;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment