diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-06-13 14:21:24 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-06-13 18:18:10 +0200 |
commit | 24b31f839c8ed62cb9309bf69acb8f84e72b6752 (patch) | |
tree | 7a72c65b68e3009a4168a20b7dcf4970b9e5a0cc /framework | |
parent | 600987b415e537362125b4445ab7132535e6e1e1 (diff) |
WaE: Wmaybe-uninitialized
Change-Id: I48e0d84ec0307f9895b5148f9522df8f0c02ac6c
Reviewed-on: https://gerrit.libreoffice.org/55758
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/jobs/jobresult.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/framework/source/jobs/jobresult.cxx b/framework/source/jobs/jobresult.cxx index 2c7e4d4a08ea..fe79bf68cdb8 100644 --- a/framework/source/jobs/jobresult.cxx +++ b/framework/source/jobs/jobresult.cxx @@ -105,7 +105,7 @@ JobResult::JobResult( /*IN*/ const css::uno::Any& aResult ) But we provide this information here only. Doing so is part of any user of us. */ - bool bDeactivate; + bool bDeactivate(false); pIt->second >>= bDeactivate; if (bDeactivate) m_eParts |= E_DEACTIVATE; |