diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-20 20:47:10 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-21 08:54:44 +0000 |
commit | 16b6b45e8ca1e727694a52525cf35782c0d69978 (patch) | |
tree | f41af98bec6ba5e5cd879288314add3b3ef511d0 /package | |
parent | 383dbc04ee65b60e7946893614a6e6bb80981599 (diff) |
coverity#707964 Uninitialized scalar field
Change-Id: I051e5ae4200563426d810e9a4d94ab02fb8ccf51
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zipapi/ZipOutputStream.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/source/zipapi/ZipOutputStream.cxx b/package/source/zipapi/ZipOutputStream.cxx index 14c5f5766fc8..e9f1b651e9a1 100644 --- a/package/source/zipapi/ZipOutputStream.cxx +++ b/package/source/zipapi/ZipOutputStream.cxx @@ -48,6 +48,8 @@ ZipOutputStream::ZipOutputStream( const uno::Reference< uno::XComponentContext > , aChucker(xOStream) , pCurrentEntry(NULL) , nMethod(DEFLATED) +, nLevel(0) +, mnDigested(0) , bFinished(sal_False) , bEncryptCurrentEntry(sal_False) , m_pCurrentStream(NULL) |