diff options
| author | Dmitry Stogov <dmitry@php.net> | 2008-11-27 19:02:45 +0000 |
|---|---|---|
| committer | Dmitry Stogov <dmitry@php.net> | 2008-11-27 19:02:45 +0000 |
| commit | e5454b359aa949385bc6f8b0a71e17f4caef87f8 (patch) | |
| tree | 4f0f9ba517bea25be384bed5b2b12b3e5b3fcc51 /ext/sqlite3/sqlite3.c | |
| parent | 496ec83e38071bfd3b2a4dae0464231b89a0a657 (diff) | |
| download | php-git-e5454b359aa949385bc6f8b0a71e17f4caef87f8.tar.gz | |
Fixed bug #46409 (__invoke method called outside of object context when using array_map)
Diffstat (limited to 'ext/sqlite3/sqlite3.c')
| -rw-r--r-- | ext/sqlite3/sqlite3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/sqlite3/sqlite3.c b/ext/sqlite3/sqlite3.c index 3100a78382..d444404c45 100644 --- a/ext/sqlite3/sqlite3.c +++ b/ext/sqlite3/sqlite3.c @@ -631,7 +631,7 @@ static int sqlite3_do_callback(struct php_sqlite3_fci *fc, zval *cb, int argc, s fc->fci.function_table = EG(function_table); fc->fci.function_name = cb; fc->fci.symbol_table = NULL; - fc->fci.object_pp = NULL; + fc->fci.object_ptr = NULL; fc->fci.retval_ptr_ptr = &retval; fc->fci.param_count = fake_argc; |
