- Don't be silent on bailout

This commit is contained in:
Johannes Schlüter 2010-09-14 14:26:37 +00:00
parent 877a6f92f0
commit 0631d2c59d

View 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();
}