diff options
author | Marcus Boerger <helly@php.net> | 2004-07-28 00:40:01 +0000 |
---|---|---|
committer | Marcus Boerger <helly@php.net> | 2004-07-28 00:40:01 +0000 |
commit | 7557b388de8ba753763260f30853fb8ab01fc22c (patch) | |
tree | 606976959c8e98094d04e48c14374add5815eb8f /ext/pdo_mysql/mysql_driver.c | |
parent | 8059173ad32a2a7f9141dbb0b20eb6a67b9ffcab (diff) | |
download | php-git-7557b388de8ba753763260f30853fb8ab01fc22c.tar.gz |
- Fix shutdown problems
Diffstat (limited to 'ext/pdo_mysql/mysql_driver.c')
-rwxr-xr-x | ext/pdo_mysql/mysql_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_mysql/mysql_driver.c b/ext/pdo_mysql/mysql_driver.c index 700543ab5b..876f1767fe 100755 --- a/ext/pdo_mysql/mysql_driver.c +++ b/ext/pdo_mysql/mysql_driver.c @@ -153,7 +153,7 @@ static int mysql_handle_closer(pdo_dbh_t *dbh TSRMLS_DC) /* {{{ */ H->einfo.errmsg = NULL; } efree(H); - H = NULL; + dbh->driver_data = NULL; } return 0; } |