Changeset 303
- Timestamp:
- 04/21/07 13:34:41 (1 year ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/eaccelerator.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r302 r303 1 2007-04-21 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 3 * Add patch from Nathanael (eaccelerator@polymorpheus.com) 4 1 5 2007-03-07 Bart Vanbrabant <bart.vanbrabant at zoeloelip.be> 2 6 eaccelerator/trunk/eaccelerator.c
r299 r303 1217 1217 #endif 1218 1218 1219 1220 1219 zend_hash_init_ex(&tmp_function_table, 100, NULL, ZEND_FUNCTION_DTOR, 1, 0); 1221 1220 zend_hash_copy(&tmp_function_table, &eaccelerator_global_function_table, NULL, &tmp_func, sizeof(zend_function)); … … 1224 1223 1225 1224 zend_hash_init_ex(&tmp_class_table, 10, NULL, ZEND_CLASS_DTOR, 1, 0); 1225 #ifdef ZEND_ENGINE_2 1226 zend_hash_copy(&tmp_class_table, &eaccelerator_global_class_table, (copy_ctor_func_t)zend_class_add_ref, &tmp_class, sizeof(zend_class_entry *)); 1227 #else 1226 1228 zend_hash_copy(&tmp_class_table, &eaccelerator_global_class_table, NULL, &tmp_class, sizeof(zend_class_entry)); 1229 #endif 1227 1230 1228 1231 orig_class_table = CG(class_table);;