mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
No bug - Fix compile error in jsgc.cpp
This commit is contained in:
parent
e662ee9fe1
commit
190e3ac3e2
@ -3896,8 +3896,8 @@ RemoveFromGrayList(RawObject wrapper)
|
||||
}
|
||||
|
||||
while (obj) {
|
||||
unsigned slot = GrayLinkSlot(o);
|
||||
RawObject next = o->getReservedSlot(slot).toObjectOrNull();
|
||||
unsigned slot = GrayLinkSlot(obj);
|
||||
RawObject next = obj->getReservedSlot(slot).toObjectOrNull();
|
||||
if (next == wrapper) {
|
||||
obj->setCrossCompartmentSlot(slot, ObjectOrNullValue(tail));
|
||||
return true;
|
||||
|
Loading…
Reference in New Issue
Block a user