summaryrefslogtreecommitdiff
path: root/main/php_output.h
diff options
context:
space:
mode:
authorXinchen Hui <laruence@gmail.com>2014-03-07 16:49:01 +0800
committerXinchen Hui <laruence@gmail.com>2014-03-07 16:49:01 +0800
commitc2933c234c74889f8b75a20e25d7fa7df54fb821 (patch)
tree23f5aabb4535daeb0cc5dbdc907bcaf9580dd160 /main/php_output.h
parent7c623c0e89e2e5798bc40e3cb48e4151f2eab1ca (diff)
downloadphp-git-c2933c234c74889f8b75a20e25d7fa7df54fb821.tar.gz
Fixed invalid pointer usage (tests/output/ob_start_callbacks.phpt)
Diffstat (limited to 'main/php_output.h')
-rw-r--r--main/php_output.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/php_output.h b/main/php_output.h
index e61b59b95a..45af14f6a5 100644
--- a/main/php_output.h
+++ b/main/php_output.h
@@ -123,7 +123,7 @@ typedef struct _php_output_handler *(*php_output_handler_alias_ctor_t)(const cha
typedef struct _php_output_handler_user_func_t {
zend_fcall_info fci;
zend_fcall_info_cache fcc;
- zval *zoh;
+ zval zoh;
} php_output_handler_user_func_t;
typedef struct _php_output_handler {