summaryrefslogtreecommitdiff
path: root/writerperfect
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-10-10 10:44:56 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-10-10 12:50:20 +0100
commit51f7c69f4f07a00363c84097744f1a2bbcdc309a (patch)
tree56c36029f0fc852cbb98dbe1d275f535532b0305 /writerperfect
parentcbdf857299ebff0bcf2d10bf877bc74c2167a4e8 (diff)
coverity#1240260 Operands don't affect result
see can we silence these false positives coverity#1240259 Operands don't affect result coverity#1240254 Operands don't affect result coverity#1240264 Operands don't affect result coverity#1240267 Operands don't affect result Change-Id: Ieca40474c231e33a516b70f7693346ac73babd61
Diffstat (limited to 'writerperfect')
-rw-r--r--writerperfect/source/common/WPXSvInputStream.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/writerperfect/source/common/WPXSvInputStream.cxx b/writerperfect/source/common/WPXSvInputStream.cxx
index 1f8d57543186..3c22f9d3b341 100644
--- a/writerperfect/source/common/WPXSvInputStream.cxx
+++ b/writerperfect/source/common/WPXSvInputStream.cxx
@@ -504,7 +504,7 @@ long WPXSvInputStreamImpl::tell()
else
{
sal_Int64 tmpPosition = mxSeekable->getPosition();
- if ((tmpPosition < 0) || (tmpPosition > (std::numeric_limits<long>::max)()))
+ if ((tmpPosition < 0) || (tmpPosition > LONG_MAX))
return -1L;
return (long)tmpPosition;
}
@@ -516,7 +516,7 @@ int WPXSvInputStreamImpl::seek(long offset)
return -1;
sal_Int64 tmpPosition = mxSeekable->getPosition();
- if ((tmpPosition < 0) || (tmpPosition > (std::numeric_limits<long>::max)()))
+ if ((tmpPosition < 0) || (tmpPosition > LONG_MAX))
return -1;
try