[Libreoffice-commits] core.git: connectivity/source

Noel Grandin noel at peralex.com
Fri Oct 17 01:24:10 PDT 2014


 connectivity/source/drivers/dbase/dindexnode.cxx |    4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

New commits:
commit 52acb420919b7a807b84f439ca59dbae245db02c
Author: Noel Grandin <noel at peralex.com>
Date:   Fri Oct 17 10:22:29 2014 +0200

    cid#1247650 Uninitialized scalar field
    
    Change-Id: I74e1a02602fd5d86790e3c0e71d6a8649fa0aa05

diff --git a/connectivity/source/drivers/dbase/dindexnode.cxx b/connectivity/source/drivers/dbase/dindexnode.cxx
index f1fb068..5c27814 100644
--- a/connectivity/source/drivers/dbase/dindexnode.cxx
+++ b/connectivity/source/drivers/dbase/dindexnode.cxx
@@ -69,7 +69,9 @@ ONDXKey::ONDXKey(double aVal, sal_uInt32 nRec)
 // index page
 
 ONDXPage::ONDXPage(ODbaseIndex& rInd, sal_uInt32 nPos, ONDXPage* pParent)
-           :nPagePos(nPos)
+           :bNoDelete(1)
+           ,nRefCount(0)
+           ,nPagePos(nPos)
            ,bModified(false)
            ,nCount(0)
            ,aParent(pParent)


More information about the Libreoffice-commits mailing list