Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
0dc78d39
Commit
0dc78d39
authored
May 28, 2007
by
kaa@polly.local
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't use log_01[] in my_strtod() to avoid loss of precision.
This is for bug #28121.
parent
afc59d33
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
strings/strtod.c
strings/strtod.c
+2
-2
No files found.
strings/strtod.c
View file @
0dc78d39
...
...
@@ -244,8 +244,8 @@ double my_strtod(const char *str, char **end_ptr, int *error)
else
step
=
array_elements
(
log_10
)
-
1
;
for
(;
exponent
>
step
;
exponent
-=
step
)
result
*=
neg_exp
?
log_01
[
step
]
:
log_10
[
step
];
result
*=
neg_exp
?
log_01
[
exponent
]
:
log_10
[
exponent
];
result
=
neg_exp
?
result
/
log_10
[
step
]
:
result
*
log_10
[
step
];
result
=
neg_exp
?
result
/
log_10
[
exponent
]
:
result
*
log_10
[
exponent
];
}
done:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment