diff options
author | unknown <konstantin@mysql.com> | 2004-12-18 03:42:28 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2004-12-18 03:42:28 +0300 |
commit | d9b8e4b84c0c377ac4cc7f6d762f304511a41868 (patch) | |
tree | 5e1076c7e9725d187a455b520bffa7fc757b22bf /strings/my_strtoll10.c | |
parent | b5fcf743a691d7fee703faa385309c4dd9114ba8 (diff) | |
download | mariadb-git-d9b8e4b84c0c377ac4cc7f6d762f304511a41868.tar.gz |
More work on truncations in libmysql: after-review fixes.
libmysql/libmysql.c:
More post-review fixes for truncation patch:
- use my_strtoll10
- workaround for Intel FPU executive precision feature
- one case when we didn't report possible truncation fixed.
strings/my_strtoll10.c:
Fix a comment.
tests/client_test.c:
One more test now passes
Diffstat (limited to 'strings/my_strtoll10.c')
-rw-r--r-- | strings/my_strtoll10.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/strings/my_strtoll10.c b/strings/my_strtoll10.c index 5217564087c..cca7c8ab396 100644 --- a/strings/my_strtoll10.c +++ b/strings/my_strtoll10.c @@ -46,7 +46,7 @@ static unsigned long lfactor[9]= from string nptr and converts it to an signed or unsigned long long integer value. Space characters and tab are ignored. - A sign character might precede the the digit characters. The number + A sign character might precede the digit characters. The number may have any number of pre-zero digits. The function stops reading the string nptr at the first character |