From: Thies C. Arntzen Date: Mon, 27 Dec 1999 11:22:57 +0000 (+0000) Subject: fix UMR in ZTS mode X-Git-Tag: PRE_ISSET_TYPE~41 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9cf1a98d0efe24e9673588a79e7bc4dd577b91c1;p=php fix UMR in ZTS mode --- 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; }