summaryrefslogtreecommitdiff
path: root/js/ipc/JavaScriptShared.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'js/ipc/JavaScriptShared.cpp')
-rw-r--r--js/ipc/JavaScriptShared.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/ipc/JavaScriptShared.cpp b/js/ipc/JavaScriptShared.cpp
index 6ec339e49..6dfb00bc5 100644
--- a/js/ipc/JavaScriptShared.cpp
+++ b/js/ipc/JavaScriptShared.cpp
@@ -100,7 +100,7 @@ IdToObjectMap::has(const ObjectId& id, const JSObject* obj) const
auto p = table_.lookup(id);
if (!p)
return false;
- return p->value().unbarrieredGet() == obj;
+ return p->value() == obj;
}
#endif