1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-29 11:41:21 +03:00

Change error code for underflows in strtod

This commit is contained in:
Ulrich Drepper
2011-07-06 20:57:55 -04:00
parent 56d4baf3bd
commit 9895c8bc62
3 changed files with 9 additions and 4 deletions

View File

@ -1,5 +1,5 @@
/* Convert string representing a number to float value, using given locale.
Copyright (C) 1997,1998,2002,2004,2005,2006,2007,2008,2009,2010
Copyright (C) 1997,1998,2002,2004,2005,2006,2007,2008,2009,2010,2011
Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
@ -185,7 +185,7 @@ round_and_return (mp_limb_t *retval, int exponent, int negative,
if (shift > MANT_DIG)
{
__set_errno (EDOM);
__set_errno (ERANGE);
return 0.0;
}