From: Nikita Popov Date: Fri, 12 Jun 2020 08:43:47 +0000 (+0200) Subject: Move label to correct position X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4a7ec516e0d10f63f64d9edf920ab52f3bd93a1b;p=php Move label to correct position --- diff --git a/Zend/zend_gc.c b/Zend/zend_gc.c index 805db23858..0b895792da 100644 --- a/Zend/zend_gc.c +++ b/Zend/zend_gc.c @@ -1384,6 +1384,7 @@ tail_call: ref = Z_COUNTED_P(zv); goto tail_call; } +handle_ht: if (GC_REF_ADDRESS(ht) != 0 && GC_REF_CHECK_COLOR(ht, GC_BLACK)) { GC_TRACE_REF(ht, "removing from buffer"); GC_REMOVE_FROM_BUFFER(ht); @@ -1397,7 +1398,6 @@ tail_call: return count; } -handle_ht: if (!ht->nNumUsed) return count; p = ht->arData; end = p + ht->nNumUsed;