filter/source/graphicfilter/icgm/class7.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 0ab8ae4d98122f7de50365a062675d001ef0ca6a Author: Caolán McNamara <caol...@redhat.com> AuthorDate: Sun Jan 5 20:37:20 2020 +0000 Commit: Caolán McNamara <caol...@redhat.com> CommitDate: Mon Jan 6 16:45:40 2020 +0100 ofz#19803 check for negative values Change-Id: I30036a16cf1651a7e27c7aefa086b3725d58933a Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86250 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caol...@redhat.com> Tested-by: Caolán McNamara <caol...@redhat.com> diff --git a/filter/source/graphicfilter/icgm/class7.cxx b/filter/source/graphicfilter/icgm/class7.cxx index 830b4d79c9cd..5de4680e08f6 100644 --- a/filter/source/graphicfilter/icgm/class7.cxx +++ b/filter/source/graphicfilter/icgm/class7.cxx @@ -80,7 +80,7 @@ void CGM::ImplDoClass7() mpChart->mDataNode[ 0 ] = *reinterpret_cast<DataNode*>( pAppData ); sal_Int8 nZoneEnum = mpChart->mDataNode[ 0 ].nZoneEnum; - if ( nZoneEnum && ( nZoneEnum <= 6 ) ) + if (nZoneEnum > 0 && nZoneEnum <= 6) mpChart->mDataNode[ nZoneEnum ] = *reinterpret_cast<DataNode*>( pAppData ); } break; _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits