diff options
author | Pierre Joye <pajoye@php.net> | 2008-10-03 16:19:49 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2008-10-03 16:19:49 +0000 |
commit | 86a352afda6f604090cc8a29ce80414940676fcd (patch) | |
tree | 6c9b6ee7ba46a02204249795583a01e8cb877b1d | |
parent | e3c65a369f176a51bee3b41ee96170ea78c1fa62 (diff) | |
download | php-git-86a352afda6f604090cc8a29ce80414940676fcd.tar.gz |
- Declarations MUST BE done in the beginning of a context
-rw-r--r-- | ext/mysqli/mysqli.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mysqli/mysqli.c b/ext/mysqli/mysqli.c index 96a5cde068..ed28108f23 100644 --- a/ext/mysqli/mysqli.c +++ b/ext/mysqli/mysqli.c @@ -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); } |