diff options
author | Daniel Beulshausen <dbeu@php.net> | 2000-10-13 09:13:01 +0000 |
---|---|---|
committer | Daniel Beulshausen <dbeu@php.net> | 2000-10-13 09:13:01 +0000 |
commit | 6fb51171c884305125ece869fda5284b00933c3a (patch) | |
tree | 265fe94a91158eeae83fc87575fa678bbca7dfbc /main/fopen_wrappers.c | |
parent | 38ad62e6c7486fe63daaf5e4e3c6f22d096e3449 (diff) | |
download | php-git-6fb51171c884305125ece869fda5284b00933c3a.tar.gz |
compile fixes & update of win32 dsp
Diffstat (limited to 'main/fopen_wrappers.c')
-rw-r--r-- | main/fopen_wrappers.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/main/fopen_wrappers.c b/main/fopen_wrappers.c index 4133f426a8..974f0c47c7 100644 --- a/main/fopen_wrappers.c +++ b/main/fopen_wrappers.c @@ -110,6 +110,8 @@ PHPAPI int php_unregister_url_wrapper(char *protocol) int php_init_fopen_wrappers(void) { + PLS_FETCH(); + int status = SUCCESS; if(PG(allow_url_fopen)) { @@ -123,6 +125,8 @@ int php_init_fopen_wrappers(void) int php_shutdown_fopen_wrappers(void) { + PLS_FETCH(); + if(PG(allow_url_fopen)) { zend_hash_destroy(&fopen_url_wrappers_hash); } |