summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2018-03-06 09:53:37 +0000
committerCaolán McNamara <caolanm@redhat.com>2018-03-06 15:17:31 +0100
commit12278d018d7a0ad92f219c1040d3c135fd166638 (patch)
tree86861308f8d28541d1f9abfe2a07a0e394527a74
parent1eda4a770a64c2ebf7092f841ecd8c82e62f7bf7 (diff)
ofz: timeout, reduce warning limit further
Change-Id: I9c8fd5ec55c446e4deb6feee800dd4a09fbea75f Reviewed-on: https://gerrit.libreoffice.org/50811 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r--vcl/source/filter/jpeg/jpegc.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/jpeg/jpegc.cxx b/vcl/source/filter/jpeg/jpegc.cxx
index 5b36ba3f1e7c..228de495f01a 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() ? 10 : 1000;
+ return utl::ConfigManager::IsFuzzing() ? 5 : 1000;
}
extern "C" void emitMessage (j_common_ptr cinfo, int msg_level)