Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
src: add HandleScope to edge loop in heap_utils
  • Loading branch information
mertcanaltin committed Nov 29, 2025
commit d09922ce9e8348f4bb083e09802500311d7af55f
1 change: 1 addition & 0 deletions src/heap_utils.cc
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,7 @@ class JSGraph : public EmbedderGraph {
size_t i = 0;
size_t j = 0;
for (const auto& edge : edge_info.second) {
HandleScope handle_scope(isolate_);
Local<Object> to_object = info_objects[edge.second];
Local<Object> edge_obj = Object::New(isolate_);
Local<Value> edge_name_value;
Expand Down
Loading