From 2d2e5d8719827e96d54368ef4d8b31feff3a434e Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sat, 1 Feb 2020 12:17:22 +0000 Subject: ofz#20422 reversed condition MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I5f880e24aee029e3560da986969d46500b5ed044 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87804 Tested-by: Jenkins Reviewed-by: Caolán McNamara --- vcl/source/filter/png/pngread.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vcl') diff --git a/vcl/source/filter/png/pngread.cxx b/vcl/source/filter/png/pngread.cxx index d6908a9bcccf..0d85e7326db1 100644 --- a/vcl/source/filter/png/pngread.cxx +++ b/vcl/source/filter/png/pngread.cxx @@ -863,7 +863,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)); } -- cgit