From 9436789d6d8fa479ae34874e6e023dc73e9ffbc5 Mon Sep 17 00:00:00 2001 From: John Preston Date: Tue, 9 Oct 2018 22:07:38 +0300 Subject: [PATCH] Version 1.4.1: Fix Linux Updater. --- Telegram/SourceFiles/_other/updater_linux.cpp | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/Telegram/SourceFiles/_other/updater_linux.cpp b/Telegram/SourceFiles/_other/updater_linux.cpp index abee1c2b7..d56478ba2 100644 --- a/Telegram/SourceFiles/_other/updater_linux.cpp +++ b/Telegram/SourceFiles/_other/updater_linux.cpp @@ -376,7 +376,7 @@ int main(int argc, char *argv[]) { } openLog(); - writeLog("Updater started.."); + writeLog("Updater started, new argments formatting.."); for (int i = 0; i < argc; ++i) { writeLog("Argument: '%s'", argv[i]); } @@ -444,9 +444,10 @@ int main(int argc, char *argv[]) { auto fullBinaryPath = exePath + exeName; const auto path = fullBinaryPath.c_str(); - auto args = vector(); - const auto push = [&](const char *arg) { - args.push_back(arg); + auto values = vector(); + const auto push = [&](string arg) { + // Force null-terminated .data() call result. + values.push_back(arg + char(0)); }; push(path); push("-noupdate"); @@ -465,7 +466,12 @@ int main(int argc, char *argv[]) { push(workdir); } - push(nullptr); + auto args = vector(); + for (auto &arg : values) { + args.push_back(arg.data()); + } + args.push_back(nullptr); + pid_t pid = fork(); switch (pid) { case -1: