Version 1.4.1: Fix Linux Updater.

This commit is contained in:
John Preston 2018-10-09 22:07:38 +03:00
parent fd53385c1f
commit 9436789d6d
1 changed files with 11 additions and 5 deletions

View File

@ -376,7 +376,7 @@ int main(int argc, char *argv[]) {
} }
openLog(); openLog();
writeLog("Updater started.."); writeLog("Updater started, new argments formatting..");
for (int i = 0; i < argc; ++i) { for (int i = 0; i < argc; ++i) {
writeLog("Argument: '%s'", argv[i]); writeLog("Argument: '%s'", argv[i]);
} }
@ -444,9 +444,10 @@ int main(int argc, char *argv[]) {
auto fullBinaryPath = exePath + exeName; auto fullBinaryPath = exePath + exeName;
const auto path = fullBinaryPath.c_str(); const auto path = fullBinaryPath.c_str();
auto args = vector<const char*>(); auto values = vector<string>();
const auto push = [&](const char *arg) { const auto push = [&](string arg) {
args.push_back(arg); // Force null-terminated .data() call result.
values.push_back(arg + char(0));
}; };
push(path); push(path);
push("-noupdate"); push("-noupdate");
@ -465,7 +466,12 @@ int main(int argc, char *argv[]) {
push(workdir); push(workdir);
} }
push(nullptr); auto args = vector<char*>();
for (auto &arg : values) {
args.push_back(arg.data());
}
args.push_back(nullptr);
pid_t pid = fork(); pid_t pid = fork();
switch (pid) { switch (pid) {
case -1: case -1: