summaryrefslogtreecommitdiff
path: root/ext/mbstring/php_mbregex.c
diff options
context:
space:
mode:
authorAlex Dowad <alexinbeijing@gmail.com>2020-06-27 23:39:43 +0200
committerAlex Dowad <alexinbeijing@gmail.com>2020-08-31 23:16:57 +0200
commita64241b5403e9c35a75b11bd5b22e905e883ed91 (patch)
tree943bd05c71750f0b562c40a8b8f09270a8199a3e /ext/mbstring/php_mbregex.c
parent8d13348bb5c4a6d8c50b4e8422d138572324fe0c (diff)
downloadphp-git-a64241b5403e9c35a75b11bd5b22e905e883ed91.tar.gz
Remove unused functions from mbstring
- mbfl_buffer_converter_reset - mbfl_buffer_converter_strncat - mbfl_buffer_converter_getbuffer - mbfl_oddlen - mbfl_filter_output_pipe_flush - mbfl_memory_device_output2 - mbfl_memory_device_output4 - mbfl_is_support_encoding - mbfl_buffer_converter_feed2 - _php_mb_regex_globals_dtor - mime_header_encoder_feed - mime_header_decoder_feed - mbfl_convert_filter_feed
Diffstat (limited to 'ext/mbstring/php_mbregex.c')
-rw-r--r--ext/mbstring/php_mbregex.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/ext/mbstring/php_mbregex.c b/ext/mbstring/php_mbregex.c
index 85309e7cfd..0481116560 100644
--- a/ext/mbstring/php_mbregex.c
+++ b/ext/mbstring/php_mbregex.c
@@ -86,12 +86,6 @@ static int _php_mb_regex_globals_ctor(zend_mb_regex_globals *pglobals)
}
/* }}} */
-/* {{{ _php_mb_regex_globals_dtor */
-static void _php_mb_regex_globals_dtor(zend_mb_regex_globals *pglobals)
-{
-}
-/* }}} */
-
/* {{{ php_mb_regex_globals_alloc */
zend_mb_regex_globals *php_mb_regex_globals_alloc(void)
{
@@ -111,7 +105,6 @@ void php_mb_regex_globals_free(zend_mb_regex_globals *pglobals)
if (!pglobals) {
return;
}
- _php_mb_regex_globals_dtor(pglobals);
pefree(pglobals, 1);
}
/* }}} */