From 53ca648bb57275597c0a6fb11ec864f3e28505e7 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 22 Aug 2006 09:56:24 +0000 Subject: [PATCH] - fix php_output_handler_started() --- main/output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main/output.c b/main/output.c index e0f5dede92..c543ff8650 100644 --- a/main/output.c +++ b/main/output.c @@ -578,7 +578,7 @@ PHPAPI int php_output_handler_started(zval *name TSRMLS_DC) int i, count = php_output_get_level(TSRMLS_C); if (count) { - handlers = (php_output_handler **) zend_stack_base(OG(handlers)); + handlers = *(php_output_handler ***) zend_stack_base(OG(handlers)); for (i = 0; i < count; ++i) { if (!zend_binary_zval_strcmp(handlers[i]->name, name)) { -- 2.50.1