From: Georg Richter Date: Sat, 16 Nov 2002 16:07:54 +0000 (+0000) Subject: forgot to decrement result_allocated :( X-Git-Tag: RELEASE_1_0b2~196 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=208a3a371790e646f4d02086711c9220951aebd9;p=php forgot to decrement result_allocated :( --- 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)--; } /* }}} */