Skip to content

Commit a00a060

Browse files
committed
deps: Fix V8 Use-After-Move DCHECK
1 parent 6ee3402 commit a00a060

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common.gypi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@
3636

3737
# Reset this number to 0 on major V8 upgrades.
3838
# Increment by one for each non-official patch applied to deps/v8.
39-
'v8_embedder_string': '-node.5',
39+
'v8_embedder_string': '-node.6',
4040

4141
##### V8 defaults for Node.js #####
4242

deps/v8/src/heap/cppgc/heap-base.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ class PlatformWithPageAllocator final : public cppgc::Platform {
101101
page_allocator_(GetGlobalPageAllocator()) {
102102
// This platform wrapper should only be used if the platform doesn't provide
103103
// a `PageAllocator`.
104-
CHECK_NULL(delegate->GetPageAllocator());
104+
CHECK_NULL(delegate_->GetPageAllocator());
105105
}
106106
~PlatformWithPageAllocator() override = default;
107107

0 commit comments

Comments
 (0)