diff options
author | Caolán McNamara <caolanm@redhat.com> | 2019-11-28 14:44:16 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2019-11-28 16:51:22 +0100 |
commit | 902a0c52c4ce4a842228e21948a702c9a4e29d37 (patch) | |
tree | 0aa6e293168d58fa769b95a2865db50a304a56ea /package | |
parent | fa790f1f62f027063586367f59d561ae6bfbfd8b (diff) |
check crcs when fuzzing after all
I end up with something that fails in the fuzzing setup but which
cannot be used as a testcase in a normal build
Change-Id: I20c73aa009fdc289d95d34a8adf8ddd5882f6694
Reviewed-on: https://gerrit.libreoffice.org/84013
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'package')
-rw-r--r-- | package/source/zipapi/XUnbufferedStream.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/package/source/zipapi/XUnbufferedStream.cxx b/package/source/zipapi/XUnbufferedStream.cxx index e5a965e26951..a6e9c2d8b783 100644 --- a/package/source/zipapi/XUnbufferedStream.cxx +++ b/package/source/zipapi/XUnbufferedStream.cxx @@ -34,8 +34,6 @@ #include <sal/log.hxx> #include <tools/diagnose_ex.h> -#include <unotools/configmgr.hxx> - using namespace ::com::sun::star; using namespace com::sun::star::packages::zip::ZipConstants; using namespace com::sun::star::io; @@ -65,7 +63,7 @@ XUnbufferedStream::XUnbufferedStream( , mnZipEnd ( 0 ) , mnZipSize ( 0 ) , mnMyCurrent ( 0 ) -, mbCheckCRC(!bRecoveryMode && !utl::ConfigManager::IsFuzzing()) +, mbCheckCRC(!bRecoveryMode) { mnZipCurrent = maEntry.nOffset; if ( mbRawStream ) |