1
0
mirror of https://github.com/php/php-src.git synced 2026-04-29 19:23:22 +02:00

- Declarations MUST BE done in the beginning of a context

This commit is contained in:
Pierre Joye
2008-10-03 16:19:49 +00:00
parent e3c65a369f
commit 86a352afda
+1 -1
View File
@@ -94,8 +94,8 @@ static int le_pmysqli;
/* Destructor for mysqli entries in free_links/used_links */
void php_mysqli_dtor_p_elements(void *data)
{
TSRMLS_FETCH();
MYSQL *mysql = (MYSQL *) data;
TSRMLS_FETCH();
mysqli_close(mysql, MYSQLI_CLOSE_IMPLICIT);
}