Fixes in strtod parser.
This commit is contained in:
parent
3665180795
commit
c83985c5ce
1 changed files with 9 additions and 0 deletions
|
|
@ -160,6 +160,7 @@ double strtod(FAR const char *str, FAR char **endptr)
|
|||
{
|
||||
set_errno(ERANGE);
|
||||
number = 0.0;
|
||||
p = (FAR char *)str;
|
||||
goto errout;
|
||||
}
|
||||
|
||||
|
|
@ -195,6 +196,14 @@ double strtod(FAR const char *str, FAR char **endptr)
|
|||
|
||||
/* Process string of digits */
|
||||
|
||||
if (!isdigit(*p))
|
||||
{
|
||||
set_errno(ERANGE);
|
||||
number = 0.0;
|
||||
p = (FAR char *)str;
|
||||
goto errout;
|
||||
}
|
||||
|
||||
n = 0;
|
||||
while (isdigit(*p))
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue