diff options
author | Sara Golemon <pollita@php.net> | 2004-06-21 21:08:05 +0000 |
---|---|---|
committer | Sara Golemon <pollita@php.net> | 2004-06-21 21:08:05 +0000 |
commit | a2c24ae90ead95f8dbed95ff732e6c89bd4275b4 (patch) | |
tree | 33f37635e277b9ea2cc75997de9229d66a464814 /main/streams/streams.c | |
parent | dc66fb1f10518b1c4712fd4d253ab3fb61428080 (diff) | |
download | php-git-a2c24ae90ead95f8dbed95ff732e6c89bd4275b4.tar.gz |
BugFix#28868 (Part Two): This fixes thread unsafety in the userspace
filters which relates to the fix just applied for userspace wrappers.
Diffstat (limited to 'main/streams/streams.c')
-rwxr-xr-x | main/streams/streams.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/streams/streams.c b/main/streams/streams.c index 7b3439b428..46c5d16b2d 100755 --- a/main/streams/streams.c +++ b/main/streams/streams.c @@ -1351,7 +1351,7 @@ int php_init_stream_wrappers(int module_number TSRMLS_DC) return ( zend_hash_init(&url_stream_wrappers_hash, 0, NULL, NULL, 1) == SUCCESS && - zend_hash_init(php_get_stream_filters_hash(), 0, NULL, NULL, 1) == SUCCESS + zend_hash_init(php_get_stream_filters_hash_global(), 0, NULL, NULL, 1) == SUCCESS && zend_hash_init(php_stream_xport_get_hash(), 0, NULL, NULL, 1) == SUCCESS && |