diff options
Diffstat (limited to 'deps/v8/src/wasm/wasm-import-wrapper-cache.cc')
-rw-r--r-- | deps/v8/src/wasm/wasm-import-wrapper-cache.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/deps/v8/src/wasm/wasm-import-wrapper-cache.cc b/deps/v8/src/wasm/wasm-import-wrapper-cache.cc index 9630fa76dd..9469855ee5 100644 --- a/deps/v8/src/wasm/wasm-import-wrapper-cache.cc +++ b/deps/v8/src/wasm/wasm-import-wrapper-cache.cc @@ -25,6 +25,7 @@ WasmCode*& WasmImportWrapperCache::operator[]( WasmCode* WasmImportWrapperCache::Get(compiler::WasmImportCallKind kind, FunctionSig* sig) const { + base::MutexGuard lock(&mutex_); auto it = entry_map_.find({kind, sig}); DCHECK(it != entry_map_.end()); return it->second; |