summaryrefslogtreecommitdiff
path: root/ext/pdo_pgsql/pgsql_driver.c
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-10-31 19:53:59 +0100
committerAnatol Belski <ab@php.net>2014-10-31 19:53:59 +0100
commite2305ac27e5130e8ff84df69847780c50ee59f1d (patch)
tree46eccac4778a8d4eea40de8f53457a27814b3d84 /ext/pdo_pgsql/pgsql_driver.c
parented9ada5fa124cbdc0fa7d7845ef61b4eb7c31798 (diff)
parent1b1f7c627a0b7df1b093b62f7472cb0ea4b9ea96 (diff)
downloadphp-git-e2305ac27e5130e8ff84df69847780c50ee59f1d.tar.gz
Merge branch 'PHP-5.6'
* PHP-5.6: fix ZTS build
Diffstat (limited to 'ext/pdo_pgsql/pgsql_driver.c')
-rw-r--r--ext/pdo_pgsql/pgsql_driver.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo_pgsql/pgsql_driver.c b/ext/pdo_pgsql/pgsql_driver.c
index b107f922a9..2d45152ad9 100644
--- a/ext/pdo_pgsql/pgsql_driver.c
+++ b/ext/pdo_pgsql/pgsql_driver.c
@@ -509,7 +509,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;