diff options
| author | Johannes Schlüter <johannes@php.net> | 2010-09-14 14:26:37 +0000 |
|---|---|---|
| committer | Johannes Schlüter <johannes@php.net> | 2010-09-14 14:26:37 +0000 |
| commit | 0631d2c59da73df045465dc5dd460843d4d3bcba (patch) | |
| tree | 460d90fadee277c0a032244de7bc34adf46ad668 | |
| parent | 877a6f92f069e3e2fee74bd4452e88733d633d5b (diff) | |
| download | php-git-0631d2c59da73df045465dc5dd460843d4d3bcba.tar.gz | |
- Don't be silent on bailout
| -rw-r--r-- | Zend/zend_hash.c | 3 |
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(); } |
