vcl/source/filter/png/pngread.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit f7c4be8d8ab59859f32062f4a6401a9cf9001e4d
Author:     Caolán McNamara <caol...@redhat.com>
AuthorDate: Sat Feb 1 12:17:22 2020 +0000
Commit:     Michael Stahl <michael.st...@cib.de>
CommitDate: Mon Feb 3 12:24:35 2020 +0100

    ofz#20422 reversed condition
    
    Change-Id: I5f880e24aee029e3560da986969d46500b5ed044
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87805
    Tested-by: Jenkins
    Reviewed-by: Michael Stahl <michael.st...@cib.de>

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));
             }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to