diff options
author | Anatol Belski <ab@php.net> | 2014-08-20 23:27:26 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-20 23:27:26 +0200 |
commit | cd18b5884b97d265f7719e351f5b12d18315e4c9 (patch) | |
tree | 80cde978899567b7a3e258e7442518a3c47ad961 /ext/pdo/pdo_stmt.c | |
parent | 888ef26cc5e03b19729c1e5fa4993fd6a9febb3f (diff) | |
parent | 6b5b5094d37035a15ddbf3a63319d569614d3dfd (diff) | |
download | php-git-cd18b5884b97d265f7719e351f5b12d18315e4c9.tar.gz |
Merge remote-tracking branch 'php/master'
Diffstat (limited to 'ext/pdo/pdo_stmt.c')
-rw-r--r-- | ext/pdo/pdo_stmt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/pdo/pdo_stmt.c b/ext/pdo/pdo_stmt.c index 7d840a2a3f..8db5f43161 100644 --- a/ext/pdo/pdo_stmt.c +++ b/ext/pdo/pdo_stmt.c @@ -748,7 +748,7 @@ static int do_fetch_class_prepare(pdo_stmt_t *stmt TSRMLS_DC) /* {{{ */ fci->params = NULL; fci->no_separation = 1; - zend_fcall_info_args(fci, &stmt->fetch.cls.ctor_args TSRMLS_CC); + zend_fcall_info_args_ex(fci, ce->constructor, &stmt->fetch.cls.ctor_args TSRMLS_CC); fcc->initialized = 1; fcc->function_handler = ce->constructor; |