diff options
author | Caolán McNamara <caolanm@redhat.com> | 2018-02-15 15:26:20 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2018-02-15 21:50:40 +0100 |
commit | 6864b7d9b72d85cc7f8be19136708eaebae1bfe4 (patch) | |
tree | 863a08faa4d0c7ec059e4305ec65a7dc684771a6 /vcl | |
parent | 20cf158b85d40bdc7e1092dcbfe648c48339aec6 (diff) |
for fuzzing, reduce allowed warnings again
Change-Id: I60c388db280f8178a5a17354b1f68e7bea9560f6
Reviewed-on: https://gerrit.libreoffice.org/49828
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/jpeg/jpegc.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/jpeg/jpegc.cxx b/vcl/source/filter/jpeg/jpegc.cxx index 8a8ea3707379..5b36ba3f1e7c 100644 --- a/vcl/source/filter/jpeg/jpegc.cxx +++ b/vcl/source/filter/jpeg/jpegc.cxx @@ -72,7 +72,7 @@ extern "C" void outputMessage (j_common_ptr cinfo) static int GetWarningLimit() { - return utl::ConfigManager::IsFuzzing() ? 100 : 1000; + return utl::ConfigManager::IsFuzzing() ? 10 : 1000; } extern "C" void emitMessage (j_common_ptr cinfo, int msg_level) |