Skip to content

Commit 652fc6e

Browse files
thibaudmichaudguybedford
authored andcommitted
deps: V8: cherry-pick cf03d55db2a0
Original commit message: [wasm][exnref] Fix default value for null exnref [email protected] Bug: 332081797 Change-Id: Ied777935946c880a78e2011040a4d9ab19a4ddd2 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5444544 Reviewed-by: Manos Koukoutos <[email protected]> Commit-Queue: Thibaud Michaud <[email protected]> Cr-Commit-Position: refs/heads/main@{#93310} Refs: v8/v8@cf03d55
1 parent 6ed9e61 commit 652fc6e

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

common.gypi

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

3939
# Reset this number to 0 on major V8 upgrades.
4040
# Increment by one for each non-official patch applied to deps/v8.
41-
'v8_embedder_string': '-node.43',
41+
'v8_embedder_string': '-node.44',
4242

4343
##### V8 defaults for Node.js #####
4444

deps/v8/src/wasm/constant-expression-interface.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ WasmValue DefaultValueForType(ValueType type, Isolate* isolate) {
202202
case kRefNull:
203203
return WasmValue(
204204
type == kWasmExternRef || type == kWasmNullExternRef ||
205-
type == kWasmExnRef
205+
type == kWasmExnRef || type == kWasmNullExnRef
206206
? Handle<Object>::cast(isolate->factory()->null_value())
207207
: Handle<Object>::cast(isolate->factory()->wasm_null()),
208208
type);

0 commit comments

Comments
 (0)