Skip to content

Commit 5681a65

Browse files
marjakhV8 LUCI CQ
authored and
V8 LUCI CQ
committedSep 6, 2021
[rab/gsab] Fix missing assignment in BackingStore::Reallocate
See nodejs/node#39945 Bug: v8:11111 Change-Id: I7271a907bf036c18a014b2a13ff5746db622456a Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3141581 Reviewed-by: Leszek Swirski <leszeks@chromium.org> Commit-Queue: Marja Hölttä <marja@chromium.org> Cr-Commit-Position: refs/heads/main@{#76670}
1 parent 062b86e commit 5681a65

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎src/objects/backing-store.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ std::unique_ptr<BackingStore> BackingStore::EmptyBackingStore(
796796

797797
bool BackingStore::Reallocate(Isolate* isolate, size_t new_byte_length) {
798798
CHECK(!is_wasm_memory_ && !custom_deleter_ && !globally_registered_ &&
799-
free_on_destruct_);
799+
free_on_destruct_ && !is_resizable_);
800800
auto allocator = get_v8_api_array_buffer_allocator();
801801
CHECK_EQ(isolate->array_buffer_allocator(), allocator);
802802
CHECK_EQ(byte_length_, byte_capacity_);
@@ -806,6 +806,7 @@ bool BackingStore::Reallocate(Isolate* isolate, size_t new_byte_length) {
806806
buffer_start_ = new_start;
807807
byte_capacity_ = new_byte_length;
808808
byte_length_ = new_byte_length;
809+
max_byte_length_ = new_byte_length;
809810
return true;
810811
}
811812

0 commit comments

Comments
 (0)