summaryrefslogtreecommitdiff
path: root/ext/pdo_mysql/pdo_mysql.c
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-08-01 09:42:04 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-08-01 10:07:05 +0200
commitec22e5aa3841770259161ff260da19b781af536e (patch)
tree0f3ec76f878b24410a94c66f635e6149ce85e812 /ext/pdo_mysql/pdo_mysql.c
parentd92229d8c78aac25925284e23aa7903dca9ed005 (diff)
downloadphp-git-ec22e5aa3841770259161ff260da19b781af536e.tar.gz
Get rid of empty function entries
Closes GH-5917
Diffstat (limited to 'ext/pdo_mysql/pdo_mysql.c')
-rw-r--r--ext/pdo_mysql/pdo_mysql.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/ext/pdo_mysql/pdo_mysql.c b/ext/pdo_mysql/pdo_mysql.c
index f3310cde41..73b4ccd7b1 100644
--- a/ext/pdo_mysql/pdo_mysql.c
+++ b/ext/pdo_mysql/pdo_mysql.c
@@ -214,12 +214,6 @@ ZEND_TSRMLS_CACHE_UPDATE();
}
/* }}} */
-/* {{{ pdo_mysql_functions[] */
-static const zend_function_entry pdo_mysql_functions[] = {
- PHP_FE_END
-};
-/* }}} */
-
/* {{{ pdo_mysql_deps[] */
static const zend_module_dep pdo_mysql_deps[] = {
ZEND_MOD_REQUIRED("pdo")
@@ -235,7 +229,7 @@ zend_module_entry pdo_mysql_module_entry = {
STANDARD_MODULE_HEADER_EX, NULL,
pdo_mysql_deps,
"pdo_mysql",
- pdo_mysql_functions,
+ NULL,
PHP_MINIT(pdo_mysql),
PHP_MSHUTDOWN(pdo_mysql),
#if defined(PDO_USE_MYSQLND) && PDO_DBG_ENABLED