diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-04 00:29:15 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-04 00:29:15 +0000 |
commit | a25e36ecc653035fb06dc5a69b86eaceb18db6dd (patch) | |
tree | c65098f119c93e78912f055988ddb633b2f24336 /base/process_util_linux.cc | |
parent | e0911d55207719cc45b657ec710ff605a7b26f43 (diff) | |
download | chromium_src-a25e36ecc653035fb06dc5a69b86eaceb18db6dd.zip chromium_src-a25e36ecc653035fb06dc5a69b86eaceb18db6dd.tar.gz chromium_src-a25e36ecc653035fb06dc5a69b86eaceb18db6dd.tar.bz2 |
Revert r17575 and r17576. They are causing layout test errors.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@17577 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/process_util_linux.cc')
-rw-r--r-- | base/process_util_linux.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/base/process_util_linux.cc b/base/process_util_linux.cc index b68ef02..ed8d32d 100644 --- a/base/process_util_linux.cc +++ b/base/process_util_linux.cc @@ -60,11 +60,6 @@ bool LaunchApp(const std::vector<std::string>& argv, CloseSuperfluousFds(fd_shuffle); - // If we are using the SUID sandbox, it sets a magic environment variable - // ("SBX_D"), so we remove that variable from the environment here on the - // off chance that it's already set. - unsetenv("SBX_D"); - scoped_array<char*> argv_cstr(new char*[argv.size() + 1]); for (size_t i = 0; i < argv.size(); i++) argv_cstr[i] = const_cast<char*>(argv[i].c_str()); |