Skip to content

Commit 4b386e3

Browse files
addaleaxtargos
authored andcommitted
src: add missing context scopes
Add scopes that ensure that the context associated with the current Environment is always entered when working with it. PR-URL: #36413 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Gus Caplan <[email protected]> Reviewed-By: Benjamin Gruenbaum <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Rich Trott <[email protected]>
1 parent fee0389 commit 4b386e3

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/env.cc

+2
Original file line numberDiff line numberDiff line change
@@ -503,6 +503,8 @@ void Environment::InitializeLibuv() {
503503
[](uv_async_t* async) {
504504
Environment* env = ContainerOf(
505505
&Environment::task_queues_async_, async);
506+
HandleScope handle_scope(env->isolate());
507+
Context::Scope context_scope(env->context());
506508
env->RunAndClearNativeImmediates();
507509
});
508510
uv_unref(reinterpret_cast<uv_handle_t*>(&task_queues_async_));

src/node_file.cc

+2
Original file line numberDiff line numberDiff line change
@@ -288,6 +288,7 @@ inline void FileHandle::Close() {
288288
void FileHandle::CloseReq::Resolve() {
289289
Isolate* isolate = env()->isolate();
290290
HandleScope scope(isolate);
291+
Context::Scope context_scope(env()->context());
291292
InternalCallbackScope callback_scope(this);
292293
Local<Promise> promise = promise_.Get(isolate);
293294
Local<Promise::Resolver> resolver = promise.As<Promise::Resolver>();
@@ -297,6 +298,7 @@ void FileHandle::CloseReq::Resolve() {
297298
void FileHandle::CloseReq::Reject(Local<Value> reason) {
298299
Isolate* isolate = env()->isolate();
299300
HandleScope scope(isolate);
301+
Context::Scope context_scope(env()->context());
300302
InternalCallbackScope callback_scope(this);
301303
Local<Promise> promise = promise_.Get(isolate);
302304
Local<Promise::Resolver> resolver = promise.As<Promise::Resolver>();

0 commit comments

Comments
 (0)