diff options
author | Pierre Joye <pajoye@php.net> | 2008-07-22 06:51:00 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2008-07-22 06:51:00 +0000 |
commit | 39ae24846569ecbccf96e4863a632acfc73f81c7 (patch) | |
tree | 4e58a90c29ba99f7ce213071a5367d238f4c944b /ext/pdo_oci/oci_statement.c | |
parent | 1d5c800648165107bfd264e35c7dfc2d27a59a8b (diff) | |
download | php-git-39ae24846569ecbccf96e4863a632acfc73f81c7.tar.gz |
- MFH: Segfault when an exception is thrown on persistent connections
Diffstat (limited to 'ext/pdo_oci/oci_statement.c')
-rwxr-xr-x | ext/pdo_oci/oci_statement.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_oci/oci_statement.c b/ext/pdo_oci/oci_statement.c index 71913989d4..1946276ee0 100755 --- a/ext/pdo_oci/oci_statement.c +++ b/ext/pdo_oci/oci_statement.c @@ -87,7 +87,7 @@ static int oci_stmt_dtor(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */ } if (S->einfo.errmsg) { - efree(S->einfo.errmsg); + pefree(S->einfo.errmsg, stmt->dbh->is_persistent); S->einfo.errmsg = NULL; } |