diff options
author | Georg Richter <georg@php.net> | 2003-01-05 20:53:06 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2003-01-05 20:53:06 +0000 |
commit | 2fbb9a52474ad342265ed4a21f62e6c33ebaab46 (patch) | |
tree | 187da52eeabf3f3b375513586c290f6bba936a9e /ext/mysql/php_mysql.c | |
parent | c9d9e053f31d5395ad4b851558cb8058248c4dfc (diff) | |
download | php-git-2fbb9a52474ad342265ed4a21f62e6c33ebaab46.tar.gz |
fixed bug #21435
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r-- | ext/mysql/php_mysql.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index d2ff1e5a86..e5cb6bb366 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -987,7 +987,7 @@ PHP_FUNCTION(mysql_get_server_info) Returns a string containing information about the most recent query */ PHP_FUNCTION(mysql_info) { - zval **mysql_link; + zval *mysql_link; int id = -1; char *str; php_mysql_conn *mysql; |