diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-18 00:40:17 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-18 02:55:12 -0600 |
commit | 0f9c938fa2bf11e031fb2f6d9beebfeda264bec6 (patch) | |
tree | 69c65ff33e147dcfd92366a8873d03067f9f53dd /include/package | |
parent | 2b2c528826b6b29d90fcb6a8e755c75cb0d65985 (diff) |
coverity#984100 Uninitialized scalar field
Change-Id: I6a90bbc1fc2faa379a72dd0a61dd96a829676e2c
Diffstat (limited to 'include/package')
-rw-r--r-- | include/package/Inflater.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/package/Inflater.hxx b/include/package/Inflater.hxx index c3575b94dcfd..9f54b49b6c16 100644 --- a/include/package/Inflater.hxx +++ b/include/package/Inflater.hxx @@ -32,7 +32,7 @@ class DLLPUBLIC_PACKAGE Inflater typedef struct z_stream_s z_stream; protected: - sal_Bool bFinish, bFinished, bSetParams, bNeedDict; + sal_Bool bFinished, bSetParams, bNeedDict; sal_Int32 nOffset, nLength, nLastInflateError; z_stream* pStream; com::sun::star::uno::Sequence < sal_Int8 > sInBuffer; |