summaryrefslogtreecommitdiff
path: root/cppuhelper
diff options
context:
space:
mode:
Diffstat (limited to 'cppuhelper')
-rw-r--r--cppuhelper/source/propshlp.cxx6
1 files changed, 4 insertions, 2 deletions
diff --git a/cppuhelper/source/propshlp.cxx b/cppuhelper/source/propshlp.cxx
index 5992c4b3edfe..8953767cc7af 100644
--- a/cppuhelper/source/propshlp.cxx
+++ b/cppuhelper/source/propshlp.cxx
@@ -1078,7 +1078,8 @@ OPropertyArrayHelper::OPropertyArrayHelper(
sal_Int32 nEle,
sal_Bool bSorted )
SAL_THROW(())
- : aInfos(pProps, nEle)
+ : m_pReserved(NULL)
+ , aInfos(pProps, nEle)
, bRightOrdered( sal_False )
{
init( bSorted );
@@ -1088,7 +1089,8 @@ OPropertyArrayHelper::OPropertyArrayHelper(
const Sequence< Property > & aProps,
sal_Bool bSorted )
SAL_THROW(())
- : aInfos(aProps)
+ : m_pReserved(NULL)
+ , aInfos(aProps)
, bRightOrdered( sal_False )
{
init( bSorted );