From: Andi Gutmans Date: Tue, 22 Oct 2002 17:00:59 +0000 (+0000) Subject: - Fix bug reported by Daniel T. Gorski X-Git-Tag: php-4.3.0pre2~194 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=329354529b37239e894495a01e1eef2aa6e9af37;p=php - Fix bug reported by Daniel T. Gorski --- diff --git a/Zend/zend_execute.c b/Zend/zend_execute.c index 5c8b8d6a86..9a969b5a07 100644 --- a/Zend/zend_execute.c +++ b/Zend/zend_execute.c @@ -3460,7 +3460,7 @@ int zend_isset_isempty_var_handler(ZEND_OPCODE_HANDLER_ARGS) int zend_isset_isempty_dim_obj_handler(ZEND_OPCODE_HANDLER_ARGS) { - zval **container = get_zval_ptr_ptr(&EX(opline)->op1, EX(Ts), BP_VAR_R); + zval **container = get_obj_zval_ptr_ptr(&EX(opline)->op1, EX(Ts), BP_VAR_R TSRMLS_CC); zval *offset = get_zval_ptr(&EX(opline)->op2, EX(Ts), &EG(free_op2), BP_VAR_R); zval **value = NULL; int result = 0;