diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-05-19 08:02:52 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-05-19 16:09:58 +0200 |
commit | a88b8c5c985a87586159c0621974a1dfe5b9b92d (patch) | |
tree | de07afac97f3f3061bd75a13e83576f48284c225 /nix/libutil/util.hh | |
parent | e53fc0c8a33b1ea4f8503aca899da34ff9ebaa3c (diff) | |
download | patches-a88b8c5c985a87586159c0621974a1dfe5b9b92d.tar patches-a88b8c5c985a87586159c0621974a1dfe5b9b92d.tar.gz |
Revert "daemon: Fix possible use-after-free."
This reverts commit 1303a4a4517260def862ce7fe97e6b28dd8005e1.
Diffstat (limited to 'nix/libutil/util.hh')
-rw-r--r-- | nix/libutil/util.hh | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/nix/libutil/util.hh b/nix/libutil/util.hh index a70981877b..ce2d77c19a 100644 --- a/nix/libutil/util.hh +++ b/nix/libutil/util.hh @@ -257,11 +257,6 @@ void killUser(uid_t uid); string runProgram(Path program, bool searchPath = false, const Strings & args = Strings()); -/* 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); |