diff options
author | Caolán McNamara <caolanm@redhat.com> | 2020-02-01 12:17:22 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2020-02-01 17:20:42 +0100 |
commit | 2d2e5d8719827e96d54368ef4d8b31feff3a434e (patch) | |
tree | 75600730ba4e763e3cccab253bd92b9a3f4cb4da /vcl | |
parent | 6886f2d66ce24218025b5d4ce8e846ea62a0d0a1 (diff) |
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@redhat.com>
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/filter/png/pngread.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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)); } |