Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCamillo Bruni <camillobruni@users.noreply.github.com>2021-12-09 12:34:43 +0300
committerMichaƫl Zasso <targos@protonmail.com>2022-04-12 23:10:37 +0300
commit62e62757b3afb9734448c632b1e1f1330241d343 (patch)
tree0a625969f1c2a31c5e70bccbb81299845d480366 /tools
parent58f3fdcccde30c115e68e7b9877f55bad1984545 (diff)
tools,test: fix V8 initialization order
Refs: https://chromium-review.googlesource.com/c/v8/v8/+/3300129/ PR-URL: https://github.com/nodejs/node/pull/42657 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Michael Dawson <midawson@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/code_cache/mkcodecache.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/code_cache/mkcodecache.cc b/tools/code_cache/mkcodecache.cc
index 5593e14fae3..68690252a14 100644
--- a/tools/code_cache/mkcodecache.cc
+++ b/tools/code_cache/mkcodecache.cc
@@ -68,6 +68,7 @@ int main(int argc, char* argv[]) {
}
isolate->Dispose();
+ v8::V8::Dispose();
v8::V8::DisposePlatform();
return 0;
}