Kaydet (Commit) 19419809 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#707716 Uninitialized pointer field

Change-Id: Ifea113d6fc0d6dd764a25cb6e70b9df41b7279c7
üst b6662967
...@@ -1078,7 +1078,8 @@ OPropertyArrayHelper::OPropertyArrayHelper( ...@@ -1078,7 +1078,8 @@ OPropertyArrayHelper::OPropertyArrayHelper(
sal_Int32 nEle, sal_Int32 nEle,
sal_Bool bSorted ) sal_Bool bSorted )
SAL_THROW(()) SAL_THROW(())
: aInfos(pProps, nEle) : m_pReserved(NULL)
, aInfos(pProps, nEle)
, bRightOrdered( sal_False ) , bRightOrdered( sal_False )
{ {
init( bSorted ); init( bSorted );
...@@ -1088,7 +1089,8 @@ OPropertyArrayHelper::OPropertyArrayHelper( ...@@ -1088,7 +1089,8 @@ OPropertyArrayHelper::OPropertyArrayHelper(
const Sequence< Property > & aProps, const Sequence< Property > & aProps,
sal_Bool bSorted ) sal_Bool bSorted )
SAL_THROW(()) SAL_THROW(())
: aInfos(aProps) : m_pReserved(NULL)
, aInfos(aProps)
, bRightOrdered( sal_False ) , bRightOrdered( sal_False )
{ {
init( bSorted ); init( bSorted );
......
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