Changeset 213
- Timestamp:
- 06/06/06 13:01:05 (2 years ago)
- Files:
-
- eaccelerator/trunk/ChangeLog (modified) (1 diff)
- eaccelerator/trunk/eaccelerator.c (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
eaccelerator/trunk/ChangeLog
r212 r213 1 2006-06-06 Hans Rakers <hans at parse dot nl> 2 * Fix for ticket #101 ('bailout' is used in zend_globals.h in a ZTS 3 build) as suggested by <ihanick at gmail dot com> 4 1 5 2006-06-02 Hans Rakers <hans at parse dot nl> 2 6 * Removed two unused vars from the internal datastructures eaccelerator/trunk/eaccelerator.c
r210 r213 1342 1342 zend_function tmp_func; 1343 1343 zend_class_entry tmp_class; 1344 int bailout;1344 int ea_bailout; 1345 1345 1346 1346 DBG(ea_debug_printf, (EA_DEBUG, "\t[%d] compile_file: marking\n", getpid())); … … 1382 1382 } 1383 1383 1384 bailout = 0;1384 ea_bailout = 0; 1385 1385 zend_try { 1386 1386 t = mm_saved_zend_compile_file(file_handle, type TSRMLS_CC); … … 1391 1391 EG(class_table) = orig_eg_class_table; 1392 1392 #endif 1393 bailout = 1;1393 ea_bailout = 1; 1394 1394 } zend_end_try(); 1395 if ( bailout) {1395 if (ea_bailout) { 1396 1396 zend_bailout(); 1397 1397 } … … 1435 1435 CG(function_table) = orig_function_table; 1436 1436 CG(class_table) = orig_class_table; 1437 bailout = 1;1437 ea_bailout = 1; 1438 1438 } zend_end_try(); 1439 if ( bailout) {1439 if (ea_bailout) { 1440 1440 zend_bailout (); 1441 1441 }