Changeset 93
- Timestamp:
- 05/10/05 22:03:34 (3 years ago)
- Files:
-
- eaccelerator/trunk/eaccelerator.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/eaccelerator.c
r92 r93 116 116 FILE *F_fp; 117 117 118 #ifdef ZEND_ENGINE_2 118 119 /* pointer to the properties_info hashtable destructor */ 119 120 static dtor_func_t properties_info_dtor = NULL; 121 #endif 120 122 121 123 /* saved original functions */ … … 3740 3742 } 3741 3743 3744 #ifdef ZEND_ENGINE_2 3742 3745 /* This function creates a dummy class entry to steal the pointer to the 3743 3746 * properties_info hashtable destructor because it's declared static */ … … 3759 3762 return property_dtor; 3760 3763 } 3764 #endif 3761 3765 3762 3766 PHP_MINIT_FUNCTION(eaccelerator) { … … 3848 3852 register_eaccelerator_as_zend_extension(); 3849 3853 } 3850 3854 #ifdef ZEND_ENGINE_2 3851 3855 /* cache the properties_info destructor */ 3852 3856 properties_info_dtor = get_zend_destroy_property_info(TSRMLS_C); 3853 3857 #endif 3854 3858 return SUCCESS; 3855 3859 }