From 773fa96dfc92bbb364c8bec2a82a1778b6a26551 Mon Sep 17 00:00:00 2001 From: Michael Wallner Date: Tue, 6 Jun 2006 22:13:23 +0000 Subject: [PATCH] - fix SEGV in 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 5de2c3635b..bd16e36d87 100644 --- a/main/output.c +++ b/main/output.c @@ -561,7 +561,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