]> granicus.if.org Git - php/commitdiff
fix UMR in ZTS mode
authorThies C. Arntzen <thies@php.net>
Mon, 27 Dec 1999 11:22:57 +0000 (11:22 +0000)
committerThies C. Arntzen <thies@php.net>
Mon, 27 Dec 1999 11:22:57 +0000 (11:22 +0000)
Zend/zend.c

index 6cf99fdd840d8a573e114d9cd86fb6d530f445e6..46967700ee33774135499892ce6a5d545aa7a407 100644 (file)
@@ -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;
 }