summaryrefslogtreecommitdiff
path: root/ext/mysqlnd/mysql_float_to_double.h
diff options
context:
space:
mode:
authorChristoph M. Becker <cmbecker69@gmx.de>2020-05-15 09:11:19 +0200
committerChristoph M. Becker <cmbecker69@gmx.de>2020-05-15 09:11:44 +0200
commit844a1245ef4ec9b57fb1ca10ed87689cfb652dd4 (patch)
treefedbba108f2d6bfcbb7eb9ad77984933fd728acc /ext/mysqlnd/mysql_float_to_double.h
parentf4c9f8b17bdcb4b32455295cdfbddc216c7fb0a2 (diff)
parentd1cd489a53c697898c2da5101c775bd6259f4be0 (diff)
downloadphp-git-844a1245ef4ec9b57fb1ca10ed87689cfb652dd4.tar.gz
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fix #79596: MySQL FLOAT truncates to int some locales
Diffstat (limited to 'ext/mysqlnd/mysql_float_to_double.h')
-rw-r--r--ext/mysqlnd/mysql_float_to_double.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/mysqlnd/mysql_float_to_double.h b/ext/mysqlnd/mysql_float_to_double.h
index 0690a4c498..f9048d827c 100644
--- a/ext/mysqlnd/mysql_float_to_double.h
+++ b/ext/mysqlnd/mysql_float_to_double.h
@@ -31,7 +31,7 @@
/*
* Convert from a 4-byte float to a 8-byte decimal by first converting
- * the float to a string, and then the string to a double.
+ * the float to a string (ignoring localization), and then the string to a double.
* The decimals argument specifies the precision of the output. If decimals
* is less than zero, then a gcvt(3) like logic is used with the significant
* digits set to FLT_DIG i.e. 6.
@@ -42,7 +42,7 @@ static inline double mysql_float_to_double(float fp4, int decimals) {
if (decimals < 0) {
php_gcvt(fp4, FLT_DIG, '.', 'e', num_buf);
} else {
- sprintf(num_buf, "%.*f", decimals, fp4);
+ snprintf(num_buf, MAX_CHAR_BUF_LEN, "%.*F", decimals, fp4);
}
return zend_strtod(num_buf, NULL);