8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5cf24a commit 56a2ae9Copy full SHA for 56a2ae9 D6A6 div>
src/node.cc
@@ -3706,7 +3706,8 @@ void Init(int* argc,
3706
#endif
3707
// The const_cast doesn't violate conceptual const-ness. V8 doesn't modify
3708
// the argv array or the elements it points to.
3709
- V8::SetFlagsFromCommandLine(&v8_argc, const_cast<char**>(v8_argv), true);
+ if (v8_argc != 0)
3710
+ V8::SetFlagsFromCommandLine(&v8_argc, const_cast<char**>(v8_argv), true);
3711
3712
// Anything that's still in v8_argv is not a V8 or a node option.
3713
for (int i = 1; i < v8_argc; i++) {