1
0
mirror of https://github.com/php/php-src.git synced 2026-03-28 02:02:32 +01:00

revert wrong fix for bug #47930

This commit is contained in:
Antony Dovgal
2009-04-14 14:18:14 +00:00
parent 62fa1809c8
commit e4e782ca80

View File

@@ -138,7 +138,7 @@ zend_module_entry filter_module_entry = {
filter_functions,
PHP_MINIT(filter),
PHP_MSHUTDOWN(filter),
PHP_RINIT(filter),
NULL,
PHP_RSHUTDOWN(filter),
PHP_MINFO(filter),
"0.11.0",
@@ -286,20 +286,6 @@ PHP_MSHUTDOWN_FUNCTION(filter)
}
/* }}} */
/* {{{ PHP_RINIT_FUNCTION
*/
PHP_RINIT_FUNCTION(filter)
{
IF_G(get_array) = NULL;
IF_G(post_array) = NULL;
IF_G(cookie_array) = NULL;
IF_G(server_array) = NULL;
IF_G(env_array) = NULL;
IF_G(session_array) = NULL;
return SUCCESS;
}
/* }}} */
/* {{{ PHP_RSHUTDOWN_FUNCTION
*/
#define VAR_ARRAY_COPY_DTOR(a) \