summaryrefslogtreecommitdiff
path: root/writerfilter
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-21 11:49:02 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-21 12:40:36 +0000
commit2fe8563664e1cb29716f1924e652e4192d2973d7 (patch)
treef0585698545e6a131e0a53aea7d8a7ce9841d25d /writerfilter
parent5c946483546784623fc74ea3a51517118a6d9ef2 (diff)
coverity#708687 Uninitialized scalar field
Change-Id: I51c0ef414fff82b8cf932d7c99b18f561c113196
Diffstat (limited to 'writerfilter')
-rw-r--r--writerfilter/source/ooxml/OOXMLFastContextHandler.cxx7
1 files changed, 5 insertions, 2 deletions
diff --git a/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx b/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
index 6cfb6d79b69f..1fbacec89f5a 100644
--- a/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
+++ b/writerfilter/source/ooxml/OOXMLFastContextHandler.cxx
@@ -1790,8 +1790,11 @@ void OOXMLFastContextHandlerTable::newPropertySet
*/
OOXMLFastContextHandlerXNote::OOXMLFastContextHandlerXNote
-(OOXMLFastContextHandler * pContext)
-: OOXMLFastContextHandlerProperties(pContext), mbForwardEventsSaved(false), mnMyXNoteType(0)
+ (OOXMLFastContextHandler * pContext)
+ : OOXMLFastContextHandlerProperties(pContext)
+ , mbForwardEventsSaved(false)
+ , mnMyXNoteId(0)
+ , mnMyXNoteType(0)
{
}