diff options
author | Stanislav Malyshev <stas@php.net> | 2005-05-18 18:02:50 +0000 |
---|---|---|
committer | Stanislav Malyshev <stas@php.net> | 2005-05-18 18:02:50 +0000 |
commit | ba7123fc9b0b8b4002b882a7846b785814612b58 (patch) | |
tree | 6022d05708ed4fba5c07ac9148f7478197575cab /Zend/zend_execute_API.c | |
parent | 94666dcfb641ac38ac9fd306f5c5f8a2b208e334 (diff) | |
download | php-git-ba7123fc9b0b8b4002b882a7846b785814612b58.tar.gz |
fix #29890 - crash when function call fails
Diffstat (limited to 'Zend/zend_execute_API.c')
-rw-r--r-- | Zend/zend_execute_API.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index d19aa8df77..9852180151 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -756,6 +756,11 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS zval *new_zval; if (fci->no_separation) { + if(i) { + /* hack to clean up the stack */ + zend_ptr_stack_n_push(&EG(argument_stack), 2, (void *) (long) i, NULL); + zend_ptr_stack_clear_multiple(TSRMLS_C); + } return FAILURE; } ALLOC_ZVAL(new_zval); |