From 9cf1a98d0efe24e9673588a79e7bc4dd577b91c1 Mon Sep 17 00:00:00 2001 From: "Thies C. Arntzen" Date: Mon, 27 Dec 1999 11:22:57 +0000 Subject: [PATCH] fix UMR in ZTS mode --- Zend/zend.c | 2 ++ 1 file changed, 2 insertions(+) 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; } -- 2.40.0