Skip to content

Commit 5613565

Browse files
committed
Remove unnecessary function entry array
1 parent e05439e commit 5613565

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

ext/mysqlnd/php_mysqlnd.c

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,6 @@
2424
#include "ext/standard/info.h"
2525
#include "zend_smart_str.h"
2626

27-
/* {{{ mysqlnd_functions[]
28-
*
29-
* Every user visible function must have an entry in mysqlnd_functions[].
30-
*/
31-
static zend_function_entry mysqlnd_functions[] = {
32-
PHP_FE_END
33-
};
34-
/* }}} */
35-
36-
3727
/* {{{ mysqlnd_minfo_print_hash */
3828
PHPAPI void
3929
mysqlnd_minfo_print_hash(zval *values)
@@ -294,7 +284,7 @@ zend_module_entry mysqlnd_module_entry = {
294284
NULL,
295285
mysqlnd_deps,
296286
"mysqlnd",
297-
mysqlnd_functions,
287+
NULL,
298288
PHP_MINIT(mysqlnd),
299289
PHP_MSHUTDOWN(mysqlnd),
300290
#if PHP_DEBUG

0 commit comments

Comments
 (0)