From 889fd48ef98160f898581789bbedca99f4120945 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Thu, 28 Sep 1995 09:20:04 +0000 Subject: (STRTOF): Fix handling of numbers with lots of leading zeroes. --- stdlib/strtod.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/stdlib/strtod.c b/stdlib/strtod.c index 8afacfff14..b7c717a823 100644 --- a/stdlib/strtod.c +++ b/stdlib/strtod.c @@ -748,9 +748,9 @@ INTERNAL (STRTOF) (nptr, endptr, group) digits we should have enough bits for the result. The remaining decimal digits give us the information that more bits are following. This can be used while rounding. (One added as a safety margin.) */ - if (dig_no - int_no > (MANT_DIG - bits + 2) / 3 + 1) + if (dig_no - int_no - lead_zero > (MANT_DIG - bits + 2) / 3 + 1) { - dig_no = int_no + (MANT_DIG - bits + 2) / 3 + 1; + dig_no = int_no + lead_zero + (MANT_DIG - bits + 2) / 3 + 1; more_bits = 1; } else @@ -789,6 +789,14 @@ INTERNAL (STRTOF) (nptr, endptr, group) if (psrc == num) memcpy (den, num, densize * sizeof (mp_limb)); + /* If we have leading zeroes now reduce the number of significant digits + and set the pointer to the first non-0 digit. */ + if (lead_zero > 0) + { + startp += lead_zero + 1; /* +1 for radix character */ + dig_no -= lead_zero; + } + /* Read the fractional digits from the string. */ (void) str_to_mpn (startp, dig_no - int_no, num, &numsize, &exponent); -- cgit v1.2.3