Only use FCC for SQLite3 user defined functions

This commit is contained in:
George Peter Banyard 2022-10-31 13:56:11 +00:00
parent 8d5d3fd035
commit 29bb426933
2 changed files with 24 additions and 37 deletions

View file

@ -52,8 +52,9 @@ typedef struct _php_sqlite3_func {
const char *func_name;
int argc;
zval func, step, fini;
struct php_sqlite3_fci afunc, astep, afini;
zend_fcall_info_cache func;
zend_fcall_info_cache step;
zend_fcall_info_cache fini;
} php_sqlite3_func;
/* Structure for SQLite collation function */