mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Merge branch '5.5' into 10.0
This commit is contained in:
@@ -1466,11 +1466,9 @@ static double my_strtod_int(const char *s00, char **se, int *error, char *buf, s
|
||||
esign= 0;
|
||||
if (++s < end)
|
||||
switch (c= *s) {
|
||||
case '-':
|
||||
esign= 1;
|
||||
/* fall through */
|
||||
case '+':
|
||||
c= *++s;
|
||||
case '-': esign= 1;
|
||||
/* fall through */
|
||||
case '+': c= *++s;
|
||||
}
|
||||
if (s < end && c >= '0' && c <= '9')
|
||||
{
|
||||
|
Reference in New Issue
Block a user