Changeset 1151 for trunk/mod_optimizer/xc_optimizer.c
- Timestamp:
- 2012-10-10T14:15:34+02:00 (8 months ago)
- File:
-
- 1 edited
-
trunk/mod_optimizer/xc_optimizer.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/mod_optimizer/xc_optimizer.c
r1112 r1151 392 392 ALLOCA_FLAG(use_heap_catchbbids) 393 393 ALLOCA_FLAG(use_heap_markbbhead) 394 bbid_t *bbids = my_do_alloca(count * sizeof(bbid_t), use_heap_bbids);395 #ifdef ZEND_ENGINE_2 396 bbid_t *catchbbids = my_do_alloca(count * sizeof(bbid_t), use_heap_catchbbids);397 #endif 398 zend_bool *markbbhead = my_do_alloca(count * sizeof(zend_bool), use_heap_markbbhead);394 bbid_t *bbids = xc_do_alloca(count * sizeof(bbid_t), use_heap_bbids); 395 #ifdef ZEND_ENGINE_2 396 bbid_t *catchbbids = xc_do_alloca(count * sizeof(bbid_t), use_heap_catchbbids); 397 #endif 398 zend_bool *markbbhead = xc_do_alloca(count * sizeof(zend_bool), use_heap_markbbhead); 399 399 400 400 /* {{{ mark jmpin/jumpout */ … … 503 503 /* }}} */ 504 504 505 my_free_alloca(markbbhead, use_heap_markbbhead);506 #ifdef ZEND_ENGINE_2 507 my_free_alloca(catchbbids, use_heap_catchbbids);508 #endif 509 my_free_alloca(bbids, use_heap_bbids);505 xc_free_alloca(markbbhead, use_heap_markbbhead); 506 #ifdef ZEND_ENGINE_2 507 xc_free_alloca(catchbbids, use_heap_catchbbids); 508 #endif 509 xc_free_alloca(bbids, use_heap_bbids); 510 510 return SUCCESS; 511 511 }
Note: See TracChangeset
for help on using the changeset viewer.

