filter/source/graphicfilter/epict/epict.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
New commits: commit 291b69c40fffc48c2890f8067e7e39e0fb04ff7d Author: Julien Nabet <[email protected]> Date: Sat Mar 23 13:58:46 2013 +0100 Related coverity#441160 Logically dead code Change-Id: Ibb4cff2b9a53eb1d9f4ea6043ed2b1b2deba1e2b Reviewed-on: https://gerrit.libreoffice.org/2929 Reviewed-by: Thomas Arnhold <[email protected]> Reviewed-by: David Tardon <[email protected]> Tested-by: David Tardon <[email protected]> diff --git a/filter/source/graphicfilter/epict/epict.cxx b/filter/source/graphicfilter/epict/epict.cxx index 26a2bf3..4114cdb 100644 --- a/filter/source/graphicfilter/epict/epict.cxx +++ b/filter/source/graphicfilter/epict/epict.cxx @@ -657,7 +657,7 @@ void PictWriter::WriteOpcode_Text(const Point & rPoint, const String& rString, s dh = aPoint.X()-aDstTextPosition.X(); dv = aPoint.Y()-aDstTextPosition.Y(); - if (bDstTextPositionValid==sal_False || dh<0 || dh>255 || dv<0 || dv>0 || bDelta==sal_False) + if (bDstTextPositionValid==sal_False || dh<0 || dh>255 || dv<0 || dv>255 || bDelta==sal_False) { *pPict << (sal_uInt16)0x0028; WritePoint(rPoint); _______________________________________________ Libreoffice-commits mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
