diff options
| author | Thies C. Arntzen <thies@php.net> | 1999-12-27 11:22:57 +0000 |
|---|---|---|
| committer | Thies C. Arntzen <thies@php.net> | 1999-12-27 11:22:57 +0000 |
| commit | 9cf1a98d0efe24e9673588a79e7bc4dd577b91c1 (patch) | |
| tree | 11b62f084854a85974d639aaf73b29f6fc178baf | |
| parent | 7e156e73b5fcd9fbaed6351f99d5ce9ee91cf6f0 (diff) | |
| download | php-git-9cf1a98d0efe24e9673588a79e7bc4dd577b91c1.tar.gz | |
fix UMR in ZTS mode
| -rw-r--r-- | Zend/zend.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Zend/zend.c b/Zend/zend.c index 6cf99fdd84..46967700ee 100644 --- a/Zend/zend.c +++ b/Zend/zend.c @@ -249,6 +249,8 @@ static void compiler_globals_ctor(zend_compiler_globals *compiler_globals) compiler_globals->class_table = (HashTable *) malloc(sizeof(HashTable)); zend_hash_init(compiler_globals->class_table, 10, NULL, ZEND_CLASS_DTOR, 1); zend_hash_copy(compiler_globals->class_table, global_class_table, zend_class_add_ref, &tmp_class, sizeof(zend_class_entry)); + + compiler_globals->extended_info = 0; } |
