From 1e1e70dc5507e9b0e5a83e9812522a58e5d81bb2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johannes=20Schl=C3=BCter?= Date: Tue, 14 Sep 2010 14:26:37 +0000 Subject: [PATCH] - Don't be silent on bailout --- Zend/zend_hash.c | 3 +++ 1 file changed, 3 insertions(+) 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(); } -- 2.50.0