mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
Remove no-op MSHUTDOWN function in xmlwriter
This commit is contained in:
@@ -97,7 +97,6 @@ static zend_object *xmlwriter_object_new(zend_class_entry *class_type)
|
||||
|
||||
/* {{{ function prototypes */
|
||||
static PHP_MINIT_FUNCTION(xmlwriter);
|
||||
static PHP_MSHUTDOWN_FUNCTION(xmlwriter);
|
||||
static PHP_MINFO_FUNCTION(xmlwriter);
|
||||
/* }}} */
|
||||
|
||||
@@ -201,7 +200,7 @@ zend_module_entry xmlwriter_module_entry = {
|
||||
"xmlwriter",
|
||||
ext_functions,
|
||||
PHP_MINIT(xmlwriter),
|
||||
PHP_MSHUTDOWN(xmlwriter),
|
||||
NULL,
|
||||
NULL,
|
||||
NULL,
|
||||
PHP_MINFO(xmlwriter),
|
||||
@@ -1075,13 +1074,6 @@ static PHP_MINIT_FUNCTION(xmlwriter)
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ PHP_MSHUTDOWN_FUNCTION */
|
||||
static PHP_MSHUTDOWN_FUNCTION(xmlwriter)
|
||||
{
|
||||
return SUCCESS;
|
||||
}
|
||||
/* }}} */
|
||||
|
||||
/* {{{ PHP_MINFO_FUNCTION */
|
||||
static PHP_MINFO_FUNCTION(xmlwriter)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user