diff options
author | Antony Dovgal <tony2001@php.net> | 2007-10-17 08:18:09 +0000 |
---|---|---|
committer | Antony Dovgal <tony2001@php.net> | 2007-10-17 08:18:09 +0000 |
commit | 780fa84fbdeea2afcca4fa204d68e4619024b481 (patch) | |
tree | 808d719ed443df139106662cec298ccf97335c3f /ext/mysqli/mysqli.c | |
parent | 8a2e9e60435021447aa877531138b0ce95f255b0 (diff) | |
download | php-git-780fa84fbdeea2afcca4fa204d68e4619024b481.tar.gz |
MFH: use correct dtro and variable for the callback
Diffstat (limited to 'ext/mysqli/mysqli.c')
-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 7aca237494..00e8ac8efd 100644 --- a/ext/mysqli/mysqli.c +++ b/ext/mysqli/mysqli.c @@ -202,7 +202,7 @@ void php_clear_mysql(MY_MYSQL *mysql) { mysql->hash_key = NULL; } if (mysql->li_read) { - zval_dtor(mysql->li_read); + zval_ptr_dtor(&(mysql->li_read)); mysql->li_read = NULL; } } |