From 3baf795c17a0a2199eb7e8b621dac7144b725c17 Mon Sep 17 00:00:00 2001 From: Rasmus Lerdorf Date: Mon, 7 Feb 2005 23:04:00 +0000 Subject: Get rid of more useless RINIT/RSHUTDOWN calls --- ext/tidy/php_tidy.h | 1 - ext/tidy/tidy.c | 7 +------ 2 files changed, 1 insertion(+), 7 deletions(-) (limited to 'ext/tidy') diff --git a/ext/tidy/php_tidy.h b/ext/tidy/php_tidy.h index c6db213256..234bb13fdd 100644 --- a/ext/tidy/php_tidy.h +++ b/ext/tidy/php_tidy.h @@ -42,7 +42,6 @@ extern zend_module_entry tidy_module_entry; PHP_MINIT_FUNCTION(tidy); PHP_MSHUTDOWN_FUNCTION(tidy); PHP_RINIT_FUNCTION(tidy); -PHP_RSHUTDOWN_FUNCTION(tidy); PHP_MINFO_FUNCTION(tidy); PHP_FUNCTION(tidy_getopt); diff --git a/ext/tidy/tidy.c b/ext/tidy/tidy.c index 75a2b6e164..b91a240a64 100644 --- a/ext/tidy/tidy.c +++ b/ext/tidy/tidy.c @@ -297,7 +297,7 @@ zend_module_entry tidy_module_entry = { PHP_MINIT(tidy), PHP_MSHUTDOWN(tidy), PHP_RINIT(tidy), - PHP_RSHUTDOWN(tidy), + NULL, PHP_MINFO(tidy), PHP_TIDY_MODULE_VERSION, STANDARD_MODULE_PROPERTIES @@ -946,11 +946,6 @@ PHP_RINIT_FUNCTION(tidy) return SUCCESS; } -PHP_RSHUTDOWN_FUNCTION(tidy) -{ - return SUCCESS; -} - PHP_MINFO_FUNCTION(tidy) { php_info_print_table_start(); -- cgit v1.2.1