sax: avoid usage of double for parsing nanoseconds here too

Change-Id: Iddf93a116cb333db6465a915dae692c33a60241a
This commit is contained in:
Michael Stahl
2013-12-17 17:29:49 +01:00
parent 77378cde59
commit 64575a5b91

View File

@@ -1645,9 +1645,13 @@ static bool lcl_parseDateTime(
}
if (bSuccess)
{
const sal_Int32 nDigits = std::min<sal_Int32>(nPos - nStart, 9);
OSL_ENSURE(nDigits > 0, "bad code monkey");
nNanoSeconds=static_cast<double>(nTemp)*(1000000000.0/pow(10.0,nDigits));
sal_Int32 nDigits = std::min<sal_Int32>(nPos - nStart, 9);
assert(nDigits > 0);
for (; nDigits < 9; ++nDigits)
{
nTemp *= 10;
}
nNanoSeconds = nTemp;
}
}