]> granicus.if.org Git - php/commitdiff
- Don't be silent on bailout
authorJohannes Schlüter <johannes@php.net>
Tue, 14 Sep 2010 14:26:37 +0000 (14:26 +0000)
committerJohannes Schlüter <johannes@php.net>
Tue, 14 Sep 2010 14:26:37 +0000 (14:26 +0000)
Zend/zend_hash.c

index 274f37a583b4ee08e541efdf3da4da57329be423..ac2675b19fc6828095f6550fb7ec8739b454c967 100644 (file)
@@ -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();
 }