summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Schlüter <johannes@php.net>2010-09-14 14:26:37 +0000
committerJohannes Schlüter <johannes@php.net>2010-09-14 14:26:37 +0000
commit0631d2c59da73df045465dc5dd460843d4d3bcba (patch)
tree460d90fadee277c0a032244de7bc34adf46ad668
parent877a6f92f069e3e2fee74bd4452e88733d633d5b (diff)
downloadphp-git-0631d2c59da73df045465dc5dd460843d4d3bcba.tar.gz
- Don't be silent on bailout
-rw-r--r--Zend/zend_hash.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/Zend/zend_hash.c b/Zend/zend_hash.c
index 866787729d..b0a7c45099 100644
--- a/Zend/zend_hash.c
+++ b/Zend/zend_hash.c
@@ -63,6 +63,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();
}