summaryrefslogtreecommitdiff
path: root/ext/pdo_mysql/mysql_driver.c
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2009-12-10 09:35:10 +0000
committerAndrey Hristov <andrey@php.net>2009-12-10 09:35:10 +0000
commitc8c250df800999e6ec06c95aa697329d8e14d93f (patch)
treefe59169326333f634c974977f3734c3b38aee79a /ext/pdo_mysql/mysql_driver.c
parent01eae78ec370ce44ec998f2fdd9148d96199eeda (diff)
downloadphp-git-c8c250df800999e6ec06c95aa697329d8e14d93f.tar.gz
Fix pdo build, forgot to remove the zval caching from pdo-mysql
Diffstat (limited to 'ext/pdo_mysql/mysql_driver.c')
-rwxr-xr-xext/pdo_mysql/mysql_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_mysql/mysql_driver.c b/ext/pdo_mysql/mysql_driver.c
index d49b046acf..b4ae56e607 100755
--- a/ext/pdo_mysql/mysql_driver.c
+++ b/ext/pdo_mysql/mysql_driver.c
@@ -731,7 +731,7 @@ static int pdo_mysql_handle_factory(pdo_dbh_t *dbh, zval *driver_options TSRMLS_
}
if (mysqlnd_connect(H->server, host, dbh->username, dbh->password, password_len, dbname, dbname_len,
- port, unix_socket, connect_opts, PDO_MYSQL_G(mysqlnd_thd_zval_cache) TSRMLS_CC) == NULL) {
+ port, unix_socket, connect_opts TSRMLS_CC) == NULL) {
#else
if (mysql_real_connect(H->server, host, dbh->username, dbh->password, dbname, port, unix_socket, connect_opts) == NULL) {
#endif