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 | 1e1e70dc5507e9b0e5a83e9812522a58e5d81bb2 (patch) | |
| tree | 46e95f5b03d8bd0c5ab6e5b5e475025b6ec7bca4 | |
| parent | 56ea98734c193381540edd93a52cb456fe59c054 (diff) | |
| download | php-git-1e1e70dc5507e9b0e5a83e9812522a58e5d81bb2.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 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(); } |
