diff options
author | Anatol Belski <ab@php.net> | 2014-10-31 19:53:16 +0100 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-10-31 19:53:16 +0100 |
commit | 1fc80d0ca7f4fbf826d11dbcaa1b3cd79e8351a0 (patch) | |
tree | 9b4a107a076086d7572f5ee4b70ab0c22aa03509 | |
parent | 29ee69434122bcda8c904ff6fbde2b9c74332240 (diff) | |
download | php-git-1fc80d0ca7f4fbf826d11dbcaa1b3cd79e8351a0.tar.gz |
fix ZTS build
-rw-r--r-- | ext/pdo_pgsql/pgsql_driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_pgsql/pgsql_driver.c b/ext/pdo_pgsql/pgsql_driver.c index 9638c72fe6..17757a7b2d 100644 --- a/ext/pdo_pgsql/pgsql_driver.c +++ b/ext/pdo_pgsql/pgsql_driver.c @@ -503,7 +503,7 @@ static int pgsql_handle_commit(pdo_dbh_t *dbh TSRMLS_DC) /* When deferred constraints are used the commit could fail, and a ROLLBACK implicitly ran. See bug #67462 */ if (!ret) { - dbh->in_txn = pgsql_handle_in_transaction(dbh); + dbh->in_txn = pgsql_handle_in_transaction(dbh TSRMLS_CC); } return ret; |