diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-24 13:25:48 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-24 13:25:48 +0000 |
commit | e22206f336cee36e8ab77136d798828c723b4c8d (patch) | |
tree | 715b6e46cb86ec31f6e3c1e0ffe050fbd2ab5214 /misc/efgcvt_r.c | |
parent | d0db5f488d9a47947c49f728ca29077c0cff48b1 (diff) | |
download | glibc-e22206f336cee36e8ab77136d798828c723b4c8d.tar glibc-e22206f336cee36e8ab77136d798828c723b4c8d.tar.gz glibc-e22206f336cee36e8ab77136d798828c723b4c8d.tar.bz2 glibc-e22206f336cee36e8ab77136d798828c723b4c8d.zip |
Update.
1999-06-24 Ulrich Drepper <drepper@cygnus.com>
* misc/tst-efgcvt.c (ecvt_tests): Test 92.0 with ndigits == 16.
* misc/efgcvt_r.c (ecvt_r): Limit ndigits before passing it to fcvt_r.
Diffstat (limited to 'misc/efgcvt_r.c')
-rw-r--r-- | misc/efgcvt_r.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/efgcvt_r.c b/misc/efgcvt_r.c index 167bd7a809..944fe4cc98 100644 --- a/misc/efgcvt_r.c +++ b/misc/efgcvt_r.c @@ -191,8 +191,8 @@ APPEND (FUNC_PREFIX, ecvt_r) (value, ndigit, decpt, sign, buf, len) *sign = isfinite (value) ? signbit (value) != 0 : 0; } else - if (APPEND (FUNC_PREFIX, fcvt_r) (value, ndigit - 1, decpt, sign, - buf, len)) + if (APPEND (FUNC_PREFIX, fcvt_r) (value, MIN (ndigit, NDIGIT_MAX) - 1, + decpt, sign, buf, len)) return -1; *decpt += exponent; |