]> 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 866787729d111342a6c3dddd886ee066e2f70f86..b0a7c45099a4d7a281e0ce5096398d9a041ec64d 100644 (file)
@@ -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();
 }