diff options
author | Nikita Popov <nikita.ppv@gmail.com> | 2019-04-10 12:23:49 +0200 |
---|---|---|
committer | Nikita Popov <nikita.ppv@gmail.com> | 2019-04-10 12:23:49 +0200 |
commit | 30d968951d5aafeb9de9296c8137ef58036ba71c (patch) | |
tree | ca30a4ec1ebba93471654e86ebf485cbfe0f1617 /Zend | |
parent | 90654aff315eade8d933aa25d02d74984ed21e14 (diff) | |
parent | 2191eac3b3c4b393235e126e84aac9eaae230c2d (diff) | |
download | php-git-30d968951d5aafeb9de9296c8137ef58036ba71c.tar.gz |
Merge branch 'PHP-7.4'
Diffstat (limited to 'Zend')
-rw-r--r-- | Zend/zend_hash.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_hash.c b/Zend/zend_hash.c index 85ace63a7b..c6ad84ae2d 100644 --- a/Zend/zend_hash.c +++ b/Zend/zend_hash.c @@ -64,7 +64,7 @@ static void _zend_is_inconsistent(const HashTable *ht, const char *file, int lin zend_output_debug_string(1, "%s(%d) : ht=%p is inconsistent", file, line, ht); break; } - zend_bailout(); + ZEND_ASSERT(0); } #define IS_CONSISTENT(a) _zend_is_inconsistent(a, __FILE__, __LINE__); #define SET_INCONSISTENT(n) do { \ |