summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-02-01 12:17:22 +0000
committerMichael Stahl <michael.stahl@cib.de>2020-02-03 12:24:35 +0100
commitf7c4be8d8ab59859f32062f4a6401a9cf9001e4d (patch)
tree412108822ade0af0cc852c661efa697cbb590cb3 /vcl
parent81147e61b2c86dc54078660307b8812e4238f90f (diff)
ofz#20422 reversed condition
Change-Id: I5f880e24aee029e3560da986969d46500b5ed044 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87805 Tested-by: Jenkins Reviewed-by: Michael Stahl <michael.stahl@cib.de>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/filter/png/pngread.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/filter/png/pngread.cxx b/vcl/source/filter/png/pngread.cxx
index aa452bf51a01..d8dd57ff11e0 100644
--- a/vcl/source/filter/png/pngread.cxx
+++ b/vcl/source/filter/png/pngread.cxx
@@ -868,7 +868,7 @@ void PNGReaderImpl::ImplGetBackground()
sal_uInt8 nGreen = ImplScaleColor();
sal_uInt8 nBlue = ImplScaleColor();
// ofz#18653 slow and uninteresting
- if (!utl::ConfigManager::IsFuzzing())
+ if (utl::ConfigManager::IsFuzzing())
return;
mxAcc->Erase(Color(nRed, nGreen, nBlue));
}