summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ext/pdo_mysql/mysql_driver.c9
-rw-r--r--ext/standard/formatted_print.c1
-rw-r--r--main/snprintf.c1
-rw-r--r--main/spprintf.c1
4 files changed, 8 insertions, 4 deletions
diff --git a/ext/pdo_mysql/mysql_driver.c b/ext/pdo_mysql/mysql_driver.c
index d0a2fc3abd..296ed4fd4f 100644
--- a/ext/pdo_mysql/mysql_driver.c
+++ b/ext/pdo_mysql/mysql_driver.c
@@ -552,6 +552,11 @@ static int pdo_mysql_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_
|CLIENT_MULTI_RESULTS
#endif
;
+#if defined(PDO_USE_MYSQLND)
+ int dbname_len = 0;
+ int password_len = 0;
+#endif
+
#ifdef CLIENT_MULTI_STATEMENTS
if (!driver_options) {
connect_opts |= CLIENT_MULTI_STATEMENTS;
@@ -560,10 +565,6 @@ static int pdo_mysql_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_
}
#endif
-#if defined(PDO_USE_MYSQLND)
- int dbname_len = 0;
- int password_len = 0;
-#endif
PDO_DBG_ENTER("pdo_mysql_handle_factory");
PDO_DBG_INF_FMT("dbh=%p", dbh);
#ifdef CLIENT_MULTI_RESULTS
diff --git a/ext/standard/formatted_print.c b/ext/standard/formatted_print.c
index a21bfebe42..a10e90bf0a 100644
--- a/ext/standard/formatted_print.c
+++ b/ext/standard/formatted_print.c
@@ -28,6 +28,7 @@
#ifdef HAVE_LOCALE_H
#include <locale.h>
#ifdef ZTS
+#include "ext/standard/php_string.h"
#define LCONV_DECIMAL_POINT (*lconv.decimal_point)
#else
#define LCONV_DECIMAL_POINT (*lconv->decimal_point)
diff --git a/main/snprintf.c b/main/snprintf.c
index f42e15a21a..8eaf39324b 100644
--- a/main/snprintf.c
+++ b/main/snprintf.c
@@ -39,6 +39,7 @@
#ifdef HAVE_LOCALE_H
#include <locale.h>
#ifdef ZTS
+#include "ext/standard/php_string.h"
#define LCONV_DECIMAL_POINT (*lconv.decimal_point)
#else
#define LCONV_DECIMAL_POINT (*lconv->decimal_point)
diff --git a/main/spprintf.c b/main/spprintf.c
index 212914fe9d..ff8e9643de 100644
--- a/main/spprintf.c
+++ b/main/spprintf.c
@@ -94,6 +94,7 @@
#ifdef HAVE_LOCALE_H
#include <locale.h>
#ifdef ZTS
+#include "ext/standard/php_string.h"
#define LCONV_DECIMAL_POINT (*lconv.decimal_point)
#else
#define LCONV_DECIMAL_POINT (*lconv->decimal_point)