Skip to content

Commit

Permalink
src: add missing initialization
Browse files Browse the repository at this point in the history
This missing initialization was reported by the coverity scans
we are in the process of re-enabling.

PR-URL: #40370
Reviewed-By: Rich Trott <rtrott@gmail.com>
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Gerhard Stöbich <deb2001-github@yahoo.de>
  • Loading branch information
mhdawson authored and targos committed Oct 13, 2021
1 parent 6f77d1a commit 857af2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_options.h
Expand Up @@ -111,7 +111,7 @@ class EnvironmentOptions : public Options {
std::string module_type;
std::string experimental_policy;
std::string experimental_policy_integrity;
bool has_policy_integrity_string;
bool has_policy_integrity_string = false;
bool experimental_repl_await = true;
bool experimental_vm_modules = false;
bool expose_internals = false;
Expand Down

0 comments on commit 857af2b

Please sign in to comment.