diff options
| author | Ilia Alshanetsky <iliaa@php.net> | 2006-08-21 16:53:50 +0000 |
|---|---|---|
| committer | Ilia Alshanetsky <iliaa@php.net> | 2006-08-21 16:53:50 +0000 |
| commit | 8d770ee2ef2ad498a04352d705bb77143a2c0984 (patch) | |
| tree | 4015e971c25444d2dfab45f23133ce34136f32b0 /ext/pdo | |
| parent | 70e59e299909a106b8b27cb40525d6a367084e72 (diff) | |
| download | php-git-8d770ee2ef2ad498a04352d705bb77143a2c0984.tar.gz | |
Fixed bug #38535 (memory corruption in pdo_pgsql driver on error retrieval
inside a failed query executed via query() method).
Diffstat (limited to 'ext/pdo')
| -rwxr-xr-x | ext/pdo/pdo_dbh.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/ext/pdo/pdo_dbh.c b/ext/pdo/pdo_dbh.c index 2b0596fd63..45df0b1221 100755 --- a/ext/pdo/pdo_dbh.c +++ b/ext/pdo/pdo_dbh.c @@ -1053,9 +1053,6 @@ static PHP_METHOD(PDO, query) zval_dtor(return_value); } - /* kill the object handle for the stmt here */ - zval_dtor(return_value); - RETURN_FALSE; } /* }}} */ |
