diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-21 10:30:51 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-21 11:13:41 +0000 |
commit | cbfc354088d391f28f7913c73bd0745d521dc1ea (patch) | |
tree | d2c5cbddf6810ab5ede65a0871bc39b1572d117c /xmlsecurity | |
parent | 108c5bb958a64763be1eb340af0fb5610f6274d3 (diff) |
coverity#708739 Uninitialized scalar field
Change-Id: I2ac9aa4d74321c9d4312650e744ce54c4af553bb
Diffstat (limited to 'xmlsecurity')
-rw-r--r-- | xmlsecurity/source/helper/xsecctl.cxx | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/xmlsecurity/source/helper/xsecctl.cxx b/xmlsecurity/source/helper/xsecctl.cxx index 8cc87f9c1dec..369e6dc82dd5 100644 --- a/xmlsecurity/source/helper/xsecctl.cxx +++ b/xmlsecurity/source/helper/xsecctl.cxx @@ -46,13 +46,18 @@ namespace cssxw = com::sun::star::xml::wrapper; #define SAXEVENTKEEPER_COMPONENT "com.sun.star.xml.crypto.sax.SAXEventKeeper" XSecController::XSecController( const cssu::Reference<cssu::XComponentContext>& rxCtx ) - :mxCtx(rxCtx), - m_nNextSecurityId(1), - m_bIsSAXEventKeeperConnected(false), - m_nStatusOfSecurityComponents(UNINITIALIZED), - m_bIsSAXEventKeeperSticky(false), - m_pErrorMessage(NULL), - m_pXSecParser(NULL) + : mxCtx(rxCtx) + , m_nNextSecurityId(1) + , m_bIsPreviousNodeInitializable(false) + , m_bIsSAXEventKeeperConnected(false) + , m_bIsCollectingElement(false) + , m_bIsBlocking(false) + , m_nStatusOfSecurityComponents(UNINITIALIZED) + , m_bIsSAXEventKeeperSticky(false) + , m_pErrorMessage(NULL) + , m_pXSecParser(NULL) + , m_nReservedSignatureId(0) + , m_bVerifyCurrentSignature(false) { } |