Changeset 189 for trunk/xcache.c
- Timestamp:
- 2006-09-20T02:24:42+02:00 (7 years ago)
- File:
-
- 1 edited
-
trunk/xcache.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xcache.c
r165 r189 96 96 static zend_bool xc_test = 0; 97 97 static zend_bool xc_readonly_protection = 0; 98 99 zend_bool xc_have_op_array_ctor = 0; 98 100 99 101 static zend_bool xc_module_gotup = 0; … … 2281 2283 { 2282 2284 char *env; 2285 zend_extension *ext; 2286 zend_llist_position lpos; 2283 2287 2284 2288 xc_module_gotup = 1; … … 2289 2293 } 2290 2294 } 2295 2296 /* cache if there's an op_array_ctor */ 2297 for (ext = zend_llist_get_first_ex(&zend_extensions, &lpos); 2298 ext; 2299 ext = zend_llist_get_next_ex(&zend_extensions, &lpos)) { 2300 if (ext->op_array_ctor) { 2301 xc_have_op_array_ctor = 1; 2302 break; 2303 } 2304 } 2305 2291 2306 2292 2307 #ifndef PHP_GINIT
Note: See TracChangeset
for help on using the changeset viewer.

