diff options
author | Antony Dovgal <tony2001@php.net> | 2006-08-02 10:04:11 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2006-08-02 10:04:11 +0000 |
commit | e5635a81af0bbbd3459d1de2595dc7ab47166eda (patch) | |
tree | 7b36a4d9286fe5bf4574c3b9e0adcded5baf9d8e /ext/mysql/php_mysql.c | |
parent | 0c4ef446e2cdf23590f41cd785637c1bd7516ebd (diff) | |
download | php-git-e5635a81af0bbbd3459d1de2595dc7ab47166eda.tar.gz |
init variable, eliminate compile warning
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 e509cf7803..201c4eccab 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -1893,7 +1893,7 @@ static void php_mysql_fetch_hash(INTERNAL_FUNCTION_PARAMETERS, int result_type, mysql_row_length_type *mysql_row_lengths; int i; zval *res, *ctor_params = NULL; - zend_class_entry *ce; + zend_class_entry *ce = NULL; #ifdef ZEND_ENGINE_2 if (into_object) { |