(cherry picked from commit 82d2a5b46f4ae84e397e0afd19b1fed2ef4b5362)
This commit is contained in:
Shelley Vohr 2018-01-23 16:33:37 -05:00 коммит произвёл Aleksei Kuzmin
Родитель 9a216aed0c
Коммит 4db5f07902
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -4103,7 +4103,7 @@ uv_loop_t* GetCurrentEventLoop(v8::Isolate* isolate) {
void AtExit(void (*cb)(void* arg), void* arg) {
auto env = Environment::GetThreadLocalEnv();
auto env = node::Environment::GetCurrent(v8::Isolate::GetCurrent());
AtExit(env, cb, arg);
}