coverity#708739 Uninitialized scalar field
Change-Id: I2ac9aa4d74321c9d4312650e744ce54c4af553bb
This commit is contained in:
parent
108c5bb958
commit
cbfc354088
@ -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)
|
||||
{
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user