From 75611ea17869a7f38c9775cf7b46818ae50600b8 Mon Sep 17 00:00:00 2001 From: Willem Jan Palenstijn Date: Fri, 2 May 2014 09:20:59 +0000 Subject: Fix uninitialized var --- src/Float32Data2D.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/Float32Data2D.cpp') diff --git a/src/Float32Data2D.cpp b/src/Float32Data2D.cpp index 151f58d..e2d7ef3 100644 --- a/src/Float32Data2D.cpp +++ b/src/Float32Data2D.cpp @@ -162,6 +162,7 @@ bool CFloat32Data2D::_initialize(int _iWidth, int _iHeight) // allocate memory for the data, but do not fill it m_pfData = 0; m_ppfData2D = 0; + m_pCustomMemory = 0; _allocateData(); // set minmax to default values @@ -196,6 +197,7 @@ bool CFloat32Data2D::_initialize(int _iWidth, int _iHeight, const float32 *_pfDa // allocate memory for the data m_pfData = 0; m_ppfData2D = 0; + m_pCustomMemory = 0; _allocateData(); // fill the data block with a copy of the input data @@ -228,6 +230,7 @@ bool CFloat32Data2D::_initialize(int _iWidth, int _iHeight, float32 _fScalar) // allocate memory for the data m_pfData = 0; m_ppfData2D = 0; + m_pCustomMemory = 0; _allocateData(); // fill the data block with a copy of the input data -- cgit v1.2.3