atomMain: initialise uv_setup_args

This commit is contained in:
Robo 2015-04-04 19:20:21 +05:30
parent 5ff9588b48
commit 8e8c5e1846

View file

@ -3,6 +3,7 @@
// found in the LICENSE file.
#include "atom/app/atom_main_args.h"
#include "vendor/node/deps/uv/include/uv.h"
namespace atom {
@ -11,8 +12,10 @@ std::vector<std::string> AtomCommandLine::argv_;
// static
void AtomCommandLine::Init(int argc, const char* const* argv) {
// Hack around with the argv pointer. Used for process.title = "blah"
char** new_argv = uv_setup_args(argc, const_cast<char**>(argv));
for (int i = 0; i < argc; ++i) {
argv_.push_back(argv[i]);
argv_.push_back(new_argv[i]);
}
}