From f926a3c07dd958d3280d677c65de0f7aaf803e88 Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Tue, 25 Oct 2011 23:01:49 +0000 Subject: Move from directly referencing an aggregated structure to using a pointer to a structure. The structure is still aggregated but we add a level of indirection for possible plugins to overwrite the storage --- ext/mysql/php_mysql.c | 1 + 1 file changed, 1 insertion(+) (limited to 'ext/mysql/php_mysql.c') diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index 4af1936c7c..7b95a13b6a 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -530,6 +530,7 @@ static PHP_GINIT_FUNCTION(mysql) /* }}} */ #ifdef MYSQL_USE_MYSQLND +#include "ext/mysqlnd/mysqlnd_reverse_api.h" static MYSQLND * mysql_convert_zv_to_mysqlnd(zval * zv TSRMLS_DC) { php_mysql_conn *mysql; -- cgit v1.2.1