From caffc1c9726e14a49d20678df454d1326b0962a0 Mon Sep 17 00:00:00 2001 From: Dmitry Stogov Date: Fri, 27 Aug 2010 06:09:18 +0000 Subject: Preallocate zend_hash instead of allocation/deallocation it on each request --- main/php_output.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'main/php_output.h') diff --git a/main/php_output.h b/main/php_output.h index 57fbcce2a0..f7f5099ffc 100644 --- a/main/php_output.h +++ b/main/php_output.h @@ -142,7 +142,7 @@ typedef struct _php_output_handler { ZEND_BEGIN_MODULE_GLOBALS(output) int flags; - zend_stack *handlers; + zend_stack handlers; php_output_handler *active; php_output_handler *running; char *output_start_filename; -- cgit v1.2.1