diff options
author | Georg Richter <georg@php.net> | 2002-11-16 16:07:54 +0000 |
---|---|---|
committer | Georg Richter <georg@php.net> | 2002-11-16 16:07:54 +0000 |
commit | 208a3a371790e646f4d02086711c9220951aebd9 (patch) | |
tree | 20400b3987859001aa86cccd151150f8f191536d /ext/mysql/php_mysql.c | |
parent | 47388f2121aa89f4f74f4277919cfaca5232c18c (diff) | |
download | php-git-208a3a371790e646f4d02086711c9220951aebd9.tar.gz |
forgot to decrement result_allocated :(
Diffstat (limited to 'ext/mysql/php_mysql.c')
-rw-r--r-- | ext/mysql/php_mysql.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/mysql/php_mysql.c b/ext/mysql/php_mysql.c index 361ffe5166..1ef4ec6b31 100644 --- a/ext/mysql/php_mysql.c +++ b/ext/mysql/php_mysql.c @@ -231,6 +231,7 @@ static void _free_mysql_result(zend_rsrc_list_entry *rsrc TSRMLS_DC) MYSQL_RES *mysql_result = (MYSQL_RES *)rsrc->ptr; mysql_free_result(mysql_result); + MySG(result_allocated)--; } /* }}} */ |