mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
bug 475146 - fixing gczeal checks in RefillDoubleFreeList. r=mrbkap
This commit is contained in:
parent
b5cd4ca3dc
commit
ae33cd4a05
@ -2056,9 +2056,9 @@ RefillDoubleFreeList(JSContext *cx)
|
||||
return NULL;
|
||||
}
|
||||
|
||||
if (rt->gcMallocBytes >= rt->gcMaxMallocBytes && rt->gcPoke
|
||||
if ((rt->gcMallocBytes >= rt->gcMaxMallocBytes && rt->gcPoke)
|
||||
#ifdef JS_GC_ZEAL
|
||||
&& (rt->gcZeal >= 2 || (rt->gcZeal >= 1 && rt->gcPoke))
|
||||
|| rt->gcZeal >= 2 || (rt->gcZeal >= 1 && rt->gcPoke)
|
||||
#endif
|
||||
) {
|
||||
goto do_gc;
|
||||
|
Loading…
Reference in New Issue
Block a user