summaryrefslogtreecommitdiff
path: root/src/process_wrap.cc
diff options
context:
space:
mode:
authorJames M Snell <jasnell@gmail.com>2020-02-25 14:37:33 -0800
committerJames M Snell <jasnell@gmail.com>2020-03-02 10:58:36 -0800
commit0fac393d263fc7e2f4f054c9d4aab0c1c3cf00c8 (patch)
treef11f3380bc282709feed38b957e38ad3adf2a4a5 /src/process_wrap.cc
parent68e36ade3de2205c583f2cc6a2d2ec192b75cc95 (diff)
downloadnode-new-0fac393d263fc7e2f4f054c9d4aab0c1c3cf00c8.tar.gz
src: improve handling of internal field counting
Change suggested by bnoordhuis. Improve handing of internal field counting by using enums. Helps protect against future possible breakage if field indexes are ever changed or added to. Signed-off-by: James M Snell <jasnell@gmail.com> PR-URL: https://github.com/nodejs/node/pull/31960 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
Diffstat (limited to 'src/process_wrap.cc')
-rw-r--r--src/process_wrap.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/process_wrap.cc b/src/process_wrap.cc
index a75f271d1c..1e7de56c6d 100644
--- a/src/process_wrap.cc
+++ b/src/process_wrap.cc
@@ -52,7 +52,8 @@ class ProcessWrap : public HandleWrap {
void* priv) {
Environment* env = Environment::GetCurrent(context);
Local<FunctionTemplate> constructor = env->NewFunctionTemplate(New);
- constructor->InstanceTemplate()->SetInternalFieldCount(1);
+ constructor->InstanceTemplate()->SetInternalFieldCount(
+ ProcessWrap::kInternalFieldCount);
Local<String> processString =
FIXED_ONE_BYTE_STRING(env->isolate(), "Process");
constructor->SetClassName(processString);