From: Johannes Schlüter Date: Tue, 14 Sep 2010 14:26:37 +0000 (+0000) Subject: - Don't be silent on bailout X-Git-Tag: php-5.4.0alpha1~191^2~954 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1e1e70dc5507e9b0e5a83e9812522a58e5d81bb2;p=php - Don't be silent on bailout --- diff --git a/Zend/zend_hash.c b/Zend/zend_hash.c index 274f37a583..ac2675b19f 100644 --- a/Zend/zend_hash.c +++ b/Zend/zend_hash.c @@ -64,6 +64,9 @@ static void _zend_is_inconsistent(const HashTable *ht, const char *file, int lin case HT_CLEANING: zend_output_debug_string(1, "%s(%d) : ht=%p is being cleaned", file, line, ht); break; + default: + zend_output_debug_string(1, "%s(%d) : ht=%p is inconsistent", file, line, ht); + break; } zend_bailout(); }