summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-12-17 16:46:17 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-12-17 17:36:53 +0100
commit5bffe4dffd7496057c1fd70e46af800396f5b346 (patch)
tree088ea4263d379119bd4264242b21abd56eaa7648 /sax
parent83beb458b05630ed2ed5a9fed5097e2122bbcd49 (diff)
Avoid inaccurate floating-point computations
...otherwise at least my --disable-dbgutil --disable-debug Linux x86_64 build failed the CppunitTest_sax_cpputest with 8999999 vs. 9000000 nanoseconds. (cherry picked from commit 695671eb18674ea58103093b9cf31a31afe8d2fd, incorporating follow-up fixes 71448690d7c5904df45bf98243c5bb05a99245e5 "readUnsignedNumberMaxDigits can read more than maxDigits chars" and b9bcc9c5c10841dcdfa9ff5814344ce667678df3 "...and nDigits > 9 is harmless in following for loop and need not be capped") Change-Id: I05e0febf413f9f9e01227a0cc4e0f46a5243fe61
Diffstat (limited to 'sax')
-rw-r--r--sax/source/tools/converter.cxx10
1 files changed, 7 insertions, 3 deletions
diff --git a/sax/source/tools/converter.cxx b/sax/source/tools/converter.cxx
index 8823965bf75a..02131ed8e89f 100644
--- a/sax/source/tools/converter.cxx
+++ b/sax/source/tools/converter.cxx
@@ -1122,9 +1122,13 @@ bool Converter::convertDuration(util::Duration& rDuration,
{
if (-1 != nTemp)
{
- const sal_Int32 nDigits = std::min<sal_Int32>(nPos - nStart, 9);
- OSL_ENSURE(nDigits > 0, "bad code monkey: negative digits");
- nNanoSeconds=static_cast<double>(nTemp)*(1000000000.0/pow(10.0,nDigits));
+ nNanoSeconds = nTemp;
+ sal_Int32 nDigits = nPos - nStart;
+ assert(nDigits >= 0);
+ for (; nDigits < 9; ++nDigits)
+ {
+ nNanoSeconds *= 10;
+ }
nTemp=-1;
if ('S' == string[nPos])
{