removed some bogus code

This commit is contained in:
Hartmut Holzgraefe 2000-10-31 11:32:05 +00:00
parent c420d653ee
commit 604876542a

View file

@ -105,21 +105,17 @@ PHPAPI int php_unregister_url_wrapper(char *protocol)
return zend_hash_del(&fopen_url_wrappers_hash, protocol, strlen(protocol)); return zend_hash_del(&fopen_url_wrappers_hash, protocol, strlen(protocol));
} else { } else {
return SUCCESS; return SUCCESS;
} }
} }
int php_init_fopen_wrappers(void) int php_init_fopen_wrappers(void)
{ {
int status = SUCCESS;
PLS_FETCH(); PLS_FETCH();
if(PG(allow_url_fopen)) { if(PG(allow_url_fopen))
if (zend_hash_init(&fopen_url_wrappers_hash, 0, NULL, NULL, 1)==FAILURE) { return zend_hash_init(&fopen_url_wrappers_hash, 0, NULL, NULL, 1);
return FAILURE;
}
}
return status; return SUCCESS;
} }
int php_shutdown_fopen_wrappers(void) int php_shutdown_fopen_wrappers(void)