Skip to content

Commit

Permalink
src: use correct variable in node_builtins.cc
Browse files Browse the repository at this point in the history
PR-URL: #47343
Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Chengzhong Wu <legendecas@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
  • Loading branch information
targos committed May 2, 2023
1 parent adc1601 commit cda36bf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/node_builtins.cc
Original file line number Diff line number Diff line change
Expand Up @@ -586,13 +586,13 @@ void BuiltinLoader::GetCacheUsage(const FunctionCallbackInfo<Value>& args) {
}

if (!ToV8Value(context, realm->builtins_in_snapshot)
.ToLocal(&builtins_without_cache_js)) {
.ToLocal(&builtins_in_snapshot_js)) {
return;
}
if (result
->Set(context,
OneByteString(isolate, "compiledInSnapshot"),
builtins_without_cache_js)
builtins_in_snapshot_js)
.IsNothing()) {
return;
}
Expand Down

0 comments on commit cda36bf

Please sign in to comment.