diff options
| author | Bob Weinand <bobwei9@hotmail.com> | 2015-06-16 23:37:23 +0200 | 
|---|---|---|
| committer | Bob Weinand <bobwei9@hotmail.com> | 2015-06-16 23:37:39 +0200 | 
| commit | 28756e99be2b6701e8a781ee54c1e1aeaa039813 (patch) | |
| tree | 19415c7b572663337dca5e1ba96c53d88289bc3d /sapi/phpdbg/phpdbg_prompt.c | |
| parent | 8c4807fe7a78d9a7e73b3943cac0647df641eb2d (diff) | |
| download | php-git-28756e99be2b6701e8a781ee54c1e1aeaa039813.tar.gz | |
Fix issue with zend_execute_ex replaced by execute_ex upon icall
Diffstat (limited to 'sapi/phpdbg/phpdbg_prompt.c')
| -rw-r--r-- | sapi/phpdbg/phpdbg_prompt.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/sapi/phpdbg/phpdbg_prompt.c b/sapi/phpdbg/phpdbg_prompt.c index 173c3f60d8..146532f81e 100644 --- a/sapi/phpdbg/phpdbg_prompt.c +++ b/sapi/phpdbg/phpdbg_prompt.c @@ -1559,7 +1559,7 @@ next:  		if ((execute_data->opline->opcode == ZEND_DO_FCALL ||  		     execute_data->opline->opcode == ZEND_DO_UCALL ||  		     execute_data->opline->opcode == ZEND_DO_FCALL_BY_NAME) && -		    execute_data->func->type == ZEND_USER_FUNCTION) { +		     execute_data->call->func->type == ZEND_USER_FUNCTION) {  			zend_execute_ex = execute_ex;  		}  		PHPDBG_G(vmret) = zend_vm_call_opcode_handler(execute_data);		 | 
