summaryrefslogtreecommitdiff
path: root/filter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-05-10 20:52:27 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-05-10 21:13:04 +0100
commit634fcdfef2dd8d1bb2dc119fa170db282fabeab8 (patch)
tree8a1eb4bbaeb05ef2327337d2cd0330d9d452a5f3 /filter
parent90c644a8629f098dd4936d92173202fdc3f21e4a (diff)
coverity#707836 Uninitialized pointer field
Change-Id: Id7cc5781e2f12b726a410ab2b4527f4103019334
Diffstat (limited to 'filter')
-rw-r--r--filter/source/msfilter/escherex.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/filter/source/msfilter/escherex.cxx b/filter/source/msfilter/escherex.cxx
index 8c13dd8d5172..7217ec10a9d3 100644
--- a/filter/source/msfilter/escherex.cxx
+++ b/filter/source/msfilter/escherex.cxx
@@ -151,12 +151,13 @@ void EscherPropertyContainer::ImplInit()
pSortStruct = new EscherPropSortStruct[ nSortBufSize ];
}
-EscherPropertyContainer::EscherPropertyContainer() :
- pGraphicProvider ( NULL ),
- pPicOutStrm ( NULL )
+EscherPropertyContainer::EscherPropertyContainer()
+ : pGraphicProvider(NULL)
+ , pPicOutStrm(NULL)
+ , pShapeBoundRect(NULL)
{
ImplInit();
-};
+}
EscherPropertyContainer::EscherPropertyContainer(
EscherGraphicProvider& rGraphProv,