mirror of
https://github.com/php/php-src.git
synced 2025-01-24 04:33:39 +08:00
Temporary fix inifite loop in gc
This commit is contained in:
parent
45c3112726
commit
f08414ce1d
@ -254,7 +254,10 @@ tail_call:
|
||||
if (EXPECTED(!ht)) {
|
||||
ref = Z_COUNTED_P(zv);
|
||||
GC_REFCOUNT(ref)++;
|
||||
goto tail_call;
|
||||
if (GC_GET_COLOR(GC_INFO(ref)) != GC_BLACK) {
|
||||
goto tail_call;
|
||||
}
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user