[Libreoffice-commits] core.git: Branch 'libreoffice-6-4' - vcl/source

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Mon Feb 3 11:25:08 UTC 2020


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

New commits:
commit f7c4be8d8ab59859f32062f4a6401a9cf9001e4d
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Sat Feb 1 12:17:22 2020 +0000
Commit:     Michael Stahl <michael.stahl at 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.stahl at 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));
             }


More information about the Libreoffice-commits mailing list