mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1157761: Fix a copy-pasto in vm/TypeInference.cpp; r=bhackett
This commit is contained in:
parent
87b4d10d29
commit
b7e1f15285
@ -904,7 +904,7 @@ TypeSet::intersectSets(TemporaryTypeSet* a, TemporaryTypeSet* b, LifoAlloc* allo
|
||||
|
||||
if (b->unknownObject()) {
|
||||
for (size_t i = 0; i < a->getObjectCount(); i++) {
|
||||
if (b->getObject(i))
|
||||
if (a->getObject(i))
|
||||
res->addType(ObjectType(a->getObject(i)), alloc);
|
||||
}
|
||||
return res;
|
||||
|
Loading…
Reference in New Issue
Block a user