diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | misc/efgcvt_r.c | 2 |
2 files changed, 4 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 690d736d7d..94acd299de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 1998-02-27 Ulrich Drepper <drepper@cygnus.com> + * misc/efgcvt_r.c (APPEND): Handle printing of 0.0 correctly. + Reported by Göran Uddeborg <goeran@uddeborg.pp.se>. + * misc/tst-efgcvt.c (ecvt_tests): Add new test case for reported bug. diff --git a/misc/efgcvt_r.c b/misc/efgcvt_r.c index 9e586e15a8..6434b9deea 100644 --- a/misc/efgcvt_r.c +++ b/misc/efgcvt_r.c @@ -106,7 +106,7 @@ APPEND (FUNC_PREFIX, fcvt_r) (value, ndigit, decpt, sign, buf, len) ++i; while (i < n && !isdigit (buf[i])); - if (*decpt == 1 && buf[0] == '0') + if (*decpt == 1 && buf[0] == '0' && value != 0.0) { /* We must not have leading zeroes. Strip them all out and adjust *DECPT if necessary. */ |