summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-10-17 10:22:29 +0200
committerNoel Grandin <noel@peralex.com>2014-10-17 10:23:08 +0200
commit52acb420919b7a807b84f439ca59dbae245db02c (patch)
tree99e5fd65d797da05661fa660332a2bd15b2f4050 /connectivity
parent73703e7fa548b14ed8df175f2867e0d6923e768b (diff)
cid#1247650 Uninitialized scalar field
Change-Id: I74e1a02602fd5d86790e3c0e71d6a8649fa0aa05
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/drivers/dbase/dindexnode.cxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/connectivity/source/drivers/dbase/dindexnode.cxx b/connectivity/source/drivers/dbase/dindexnode.cxx
index f1fb06831808..5c278146c1a4 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)