[Libreoffice-commits] core.git: vcl/source
Caolán McNamara (via logerrit)
logerrit at kemper.freedesktop.org
Sat Feb 1 16:21:17 UTC 2020
vcl/source/filter/png/pngread.cxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 2d2e5d8719827e96d54368ef4d8b31feff3a434e
Author: Caolán McNamara <caolanm at redhat.com>
AuthorDate: Sat Feb 1 12:17:22 2020 +0000
Commit: Caolán McNamara <caolanm at redhat.com>
CommitDate: Sat Feb 1 17:20:42 2020 +0100
ofz#20422 reversed condition
Change-Id: I5f880e24aee029e3560da986969d46500b5ed044
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87804
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolanm at redhat.com>
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));
}
More information about the Libreoffice-commits
mailing list