From: Zeev Suraski Date: Tue, 11 Jul 2000 14:47:34 +0000 (+0000) Subject: Another persistent hash - disable apply protection X-Git-Tag: PRE_FILE_COMPILE_API_CHANGE~306 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=351386662793af2c785fb668c31738b0e12f6aee;p=php Another persistent hash - disable apply protection --- diff --git a/Zend/zend_list.c b/Zend/zend_list.c index 09916204cf..88410a9891 100644 --- a/Zend/zend_list.c +++ b/Zend/zend_list.c @@ -289,7 +289,7 @@ int zend_init_rsrc_list(ELS_D) int zend_init_rsrc_plist(ELS_D) { - return zend_hash_init(&EG(persistent_list), 0, NULL, plist_entry_destructor, 1); + return zend_hash_init_ex(&EG(persistent_list), 0, NULL, plist_entry_destructor, 1, 0); }