diff options
author | Noel Grandin <noel@peralex.com> | 2014-10-27 11:36:37 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-10-27 11:36:37 +0200 |
commit | c0c8478620c1a157e1175cc3c632b09e0e4506a3 (patch) | |
tree | 376e0a06b1fb86eef973788d7dd53ce5d0717b97 /package | |
parent | 5c90f8dd04d77ebc444b68723e0a17f166b700cd (diff) |
cid#1249676 Uninitialized scalar field
Change-Id: I87df4e9c1d3f36afccf13aebfd95d1b4f3bfa655
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zippackage/ZipPackageEntry.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/package/source/zippackage/ZipPackageEntry.cxx b/package/source/zippackage/ZipPackageEntry.cxx index 4d5d63d25197..78a2e5dcd2e1 100644 --- a/package/source/zippackage/ZipPackageEntry.cxx +++ b/package/source/zippackage/ZipPackageEntry.cxx @@ -42,7 +42,9 @@ using namespace com::sun::star::packages::zip::ZipConstants; ZipPackageEntry::ZipPackageEntry() : mbIsFolder( false ) +, mbAllowRemoveOnInsert(false) , mpParent ( NULL ) +, m_nFormat(0) { } |