From: Felipe Pena Date: Tue, 30 Jun 2009 11:34:31 +0000 (+0000) Subject: - MFH: Fixed bug #48709 (metaphone and 'wh') X-Git-Tag: php-5.3.1RC1~497 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5a8169902a12c7cf394c28c6c2296d662395a7f1;p=php - MFH: Fixed bug #48709 (metaphone and 'wh') --- diff --git a/Zend/zend_builtin_functions.c b/Zend/zend_builtin_functions.c index 702201d7ab..4c6d29c8f7 100644 --- a/Zend/zend_builtin_functions.c +++ b/Zend/zend_builtin_functions.c @@ -1755,6 +1755,7 @@ ZEND_FUNCTION(create_function) zend_hash_del(EG(function_table), LAMBDA_TEMP_FUNCNAME, sizeof(LAMBDA_TEMP_FUNCNAME)); RETURN_STRINGL(function_name, function_name_length, 0); } else { + zend_hash_del(EG(function_table), LAMBDA_TEMP_FUNCNAME, sizeof(LAMBDA_TEMP_FUNCNAME)); RETURN_FALSE; } }