From 49bb030e9b9ef6b61c8a309a84a0ac78218db971 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Tue, 13 Dec 2011 00:09:42 +0100 Subject: [PATCH] fix crash for std::numeric_limits::min() in our math lib impl --- sal/rtl/source/math.cxx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sal/rtl/source/math.cxx b/sal/rtl/source/math.cxx index 947f733a9428..67b3a513787c 100644 --- a/sal/rtl/source/math.cxx +++ b/sal/rtl/source/math.cxx @@ -59,7 +59,9 @@ static double getN10Exp( int nExp ) { if ( nExp < 0 ) { - if ( -nExp <= n10Count ) + // && -nExp > 0 necessary for std::numeric_limits::min() + // because -nExp = nExp + if ( -nExp <= n10Count && -nExp > 0 ) return n10s[1][-nExp-1]; else return pow( 10.0, static_cast( nExp ) );