From: Marcus Boerger Date: Tue, 15 Jan 2008 11:47:29 +0000 (+0000) Subject: - Fix the fix X-Git-Tag: RELEASE_2_0_0a1~894 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=505ffcbca8813edf414871429715ea6f3785b8a5;p=php - Fix the fix --- diff --git a/Zend/zend_execute_API.c b/Zend/zend_execute_API.c index f2b14e8be9..00099a95e9 100644 --- a/Zend/zend_execute_API.c +++ b/Zend/zend_execute_API.c @@ -1182,7 +1182,7 @@ int zend_call_function(zend_fcall_info *fci, zend_fcall_info_cache *fci_cache TS }*/ if (EG(exception) && fci->retval_ptr_ptr) { zval_ptr_dtor(fci->retval_ptr_ptr); - fci->retval_ptr_ptr = NULL; + *fci->retval_ptr_ptr = NULL; } } zend_ptr_stack_clear_multiple(TSRMLS_C);