diff options
author | Matteo Beccati <mbeccati@php.net> | 2016-07-10 14:36:07 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2016-07-14 12:05:40 +0200 |
commit | 0f182c2495f3aa84aed76485a4406b383c77c785 (patch) | |
tree | bbe78e5905038b58cc987d41a08ffd83d01c28ea /ext/pdo_pgsql/pgsql_statement.c | |
parent | 8bd8a64db64fd1bd89aa0f10b4214f576e72a8a2 (diff) | |
download | php-git-0f182c2495f3aa84aed76485a4406b383c77c785.tar.gz |
Fixed bug #72570 Segmentation fault when binding parameters on a query without placeholders
Special commit for 7.0.9
Diffstat (limited to 'ext/pdo_pgsql/pgsql_statement.c')
-rw-r--r-- | ext/pdo_pgsql/pgsql_statement.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/pdo_pgsql/pgsql_statement.c b/ext/pdo_pgsql/pgsql_statement.c index ee06cfc439..c32a81a87a 100644 --- a/ext/pdo_pgsql/pgsql_statement.c +++ b/ext/pdo_pgsql/pgsql_statement.c @@ -292,6 +292,9 @@ static int pgsql_stmt_param_hook(pdo_stmt_t *stmt, struct pdo_bound_param_data * break; case PDO_PARAM_EVT_ALLOC: + if (!stmt->bound_param_map) { + return 1; + } if (!zend_hash_index_exists(stmt->bound_param_map, param->paramno)) { pdo_raise_impl_error(stmt->dbh, stmt, "HY093", "parameter was not defined"); return 0; |