diff options
author | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-12T14·01+0100 |
---|---|---|
committer | Eelco Dolstra <eelco.dolstra@logicblox.com> | 2014-12-12T14·01+0100 |
commit | f52b6c944e90b3e35925122779175705fdc02e12 (patch) | |
tree | bde0793743885e9fdc7a097067b513d2d35b84ea /src/libutil | |
parent | 28f22b4653bfcf1be41b042c8068b6513dd3e931 (diff) |
Fix some memory leaks
Diffstat (limited to 'src/libutil')
-rw-r--r-- | src/libutil/util.cc | 19 | ||||
-rw-r--r-- | src/libutil/util.hh | 5 |
2 files changed, 18 insertions, 6 deletions
diff --git a/src/libutil/util.cc b/src/libutil/util.cc index 1f71f76d5360..dcdb438e03b2 100644 --- a/src/libutil/util.cc +++ b/src/libutil/util.cc @@ -912,16 +912,19 @@ pid_t startProcess(std::function<void()> fun, const ProcessOptions & options) } +std::vector<const char *> stringsToCharPtrs(const Strings & ss) +{ + std::vector<const char *> res; + for (auto & s : ss) res.push_back(s.c_str()); + res.push_back(0); + return res; +} + + string runProgram(Path program, bool searchPath, const Strings & args) { checkInterrupt(); - std::vector<const char *> cargs; /* careful with c_str()! */ - cargs.push_back(program.c_str()); - for (Strings::const_iterator i = args.begin(); i != args.end(); ++i) - cargs.push_back(i->c_str()); - cargs.push_back(0); - /* Create a pipe. */ Pipe pipe; pipe.create(); @@ -931,6 +934,10 @@ string runProgram(Path program, bool searchPath, const Strings & args) if (dup2(pipe.writeSide, STDOUT_FILENO) == -1) throw SysError("dupping stdout"); + Strings args_(args); + args_.push_front(program); + auto cargs = stringsToCharPtrs(args_); + if (searchPath) execvp(program.c_str(), (char * *) &cargs[0]); else diff --git a/src/libutil/util.hh b/src/libutil/util.hh index 352b83e709f5..186ee71f45d0 100644 --- a/src/libutil/util.hh +++ b/src/libutil/util.hh @@ -289,6 +289,11 @@ string runProgram(Path program, bool searchPath = false, MakeError(ExecError, Error) +/* Convert a list of strings to a null-terminated vector of char + *'s. The result must not be accessed beyond the lifetime of the + list of strings. */ +std::vector<const char *> stringsToCharPtrs(const Strings & ss); + /* Close all file descriptors except stdin, stdout, stderr, and those listed in the given set. Good practice in child processes. */ void closeMostFDs(const set<int> & exceptions); |