From b038eb84c38663c7e12fdbbd9edc0fb96e346266 Mon Sep 17 00:00:00 2001 From: Xuefer Date: Fri, 28 Dec 2007 12:09:43 +0000 Subject: [PATCH] fix unused variable warning git-svn-id: svn://svn.lighttpd.net/xcache/trunk@486 c26eb9a1-5813-0410-bd6c-c2e55f420ca7 --- xcache.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/xcache.c b/xcache.c index c78720c..b32e012 100644 --- a/xcache.c +++ b/xcache.c @@ -608,9 +608,8 @@ static zend_op_array *xc_entry_install(xc_entry_t *xce, zend_file_handle *h TSRM zend_uint i; xc_entry_data_php_t *p = xce->data.php; zend_op_array *old_active_op_array = CG(active_op_array); - ALLOCA_FLAG(use_heap) - #ifndef ZEND_ENGINE_2 + ALLOCA_FLAG(use_heap) /* new ptr which is stored inside CG(class_table) */ xc_cest_t **new_cest_ptrs = (xc_cest_t **)my_do_alloca(sizeof(xc_cest_t*) * p->classinfo_cnt, use_heap); #endif