diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-19 09:22:24 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-19 09:23:06 +0000 |
commit | db03076476eb054db87e8d464d98799ca1bf661c (patch) | |
tree | 04a96f650a751293c2c5d835c4ca0b27b8259c69 /unotools | |
parent | 6c272275c54488f231f7523c59fd4900af915fd7 (diff) |
coverity#984168 Uninitialized scalar field
Change-Id: I7c0af2de872bb0064a2e5cb269fd2a08f228ce3e
Diffstat (limited to 'unotools')
-rw-r--r-- | unotools/source/config/securityoptions.cxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/unotools/source/config/securityoptions.cxx b/unotools/source/config/securityoptions.cxx index 20df661470b4..3a33933de9e3 100644 --- a/unotools/source/config/securityoptions.cxx +++ b/unotools/source/config/securityoptions.cxx @@ -253,6 +253,9 @@ SvtSecurityOptions_Impl::SvtSecurityOptions_Impl() ,m_bPrint ( sal_True ) ,m_bCreatePDF ( sal_True ) ,m_bRemoveInfo ( sal_True ) + ,m_bRecommendPwd(false) + ,m_bCtrlClickHyperlink(false) + ,m_bBlockUntrustedRefererLinks(false) ,m_nSecLevel ( sal_True ) ,m_seqTrustedAuthors ( DEFAULT_TRUSTEDAUTHORS ) ,m_bDisableMacros ( sal_False ) @@ -262,6 +265,9 @@ SvtSecurityOptions_Impl::SvtSecurityOptions_Impl() ,m_bROPrint ( CFG_READONLY_DEFAULT ) ,m_bROCreatePDF ( CFG_READONLY_DEFAULT ) ,m_bRORemoveInfo ( CFG_READONLY_DEFAULT ) + ,m_bRORecommendPwd(CFG_READONLY_DEFAULT) + ,m_bROCtrlClickHyperlink(CFG_READONLY_DEFAULT) + ,m_bROBlockUntrustedRefererLinks(CFG_READONLY_DEFAULT) ,m_bROSecLevel ( CFG_READONLY_DEFAULT ) ,m_bROTrustedAuthors ( CFG_READONLY_DEFAULT ) ,m_bRODisableMacros ( sal_True ) // currently is not intended to be changed |