mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 914478 - Fix checking for error in setElemTryCache. (r=jandem)
This commit is contained in:
parent
43a4276031
commit
5df1c0a5aa
@ -7270,8 +7270,8 @@ IonBuilder::setElemTryCache(bool *emitted, MDefinition *object,
|
||||
return true;
|
||||
|
||||
bool needsBarrier;
|
||||
if (PropertyWriteNeedsTypeBarrier(cx, current, &object, NULL, &value, /* canModify = */ true,
|
||||
&needsBarrier))
|
||||
if (!PropertyWriteNeedsTypeBarrier(cx, current, &object, NULL, &value, /* canModify = */ true,
|
||||
&needsBarrier))
|
||||
{
|
||||
return false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user