coverity#708739 Uninitialized scalar field
Change-Id: I2ac9aa4d74321c9d4312650e744ce54c4af553bb
This commit is contained in:
@@ -46,13 +46,18 @@ namespace cssxw = com::sun::star::xml::wrapper;
|
|||||||
#define SAXEVENTKEEPER_COMPONENT "com.sun.star.xml.crypto.sax.SAXEventKeeper"
|
#define SAXEVENTKEEPER_COMPONENT "com.sun.star.xml.crypto.sax.SAXEventKeeper"
|
||||||
|
|
||||||
XSecController::XSecController( const cssu::Reference<cssu::XComponentContext>& rxCtx )
|
XSecController::XSecController( const cssu::Reference<cssu::XComponentContext>& rxCtx )
|
||||||
:mxCtx(rxCtx),
|
: mxCtx(rxCtx)
|
||||||
m_nNextSecurityId(1),
|
, m_nNextSecurityId(1)
|
||||||
m_bIsSAXEventKeeperConnected(false),
|
, m_bIsPreviousNodeInitializable(false)
|
||||||
m_nStatusOfSecurityComponents(UNINITIALIZED),
|
, m_bIsSAXEventKeeperConnected(false)
|
||||||
m_bIsSAXEventKeeperSticky(false),
|
, m_bIsCollectingElement(false)
|
||||||
m_pErrorMessage(NULL),
|
, m_bIsBlocking(false)
|
||||||
m_pXSecParser(NULL)
|
, m_nStatusOfSecurityComponents(UNINITIALIZED)
|
||||||
|
, m_bIsSAXEventKeeperSticky(false)
|
||||||
|
, m_pErrorMessage(NULL)
|
||||||
|
, m_pXSecParser(NULL)
|
||||||
|
, m_nReservedSignatureId(0)
|
||||||
|
, m_bVerifyCurrentSignature(false)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user