Skip to content

Commit 2d2e5d8

Browse files
author
Caolán McNamara
committed
ofz#20422 reversed condition
Change-Id: I5f880e24aee029e3560da986969d46500b5ed044 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87804 Tested-by: Jenkins Reviewed-by: Caolán McNamara <[email protected]>
1 parent 6886f2d commit 2d2e5d8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vcl/source/filter/png/pngread.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -863,7 +863,7 @@ void PNGReaderImpl::ImplGetBackground()
863863
sal_uInt8 nGreen = ImplScaleColor();
864864
sal_uInt8 nBlue = ImplScaleColor();
865865
// ofz#18653 slow and uninteresting
866-
if (!utl::ConfigManager::IsFuzzing())
866+
if (utl::ConfigManager::IsFuzzing())
867867
return;
868868
mxAcc->Erase(Color(nRed, nGreen, nBlue));
869869
}

0 commit comments

Comments
 (0)