| Index: components/nacl/zygote/nacl_fork_delegate_linux.cc
|
| diff --git a/components/nacl/zygote/nacl_fork_delegate_linux.cc b/components/nacl/zygote/nacl_fork_delegate_linux.cc
|
| index 1546bdd6f483a5be067e5a727cbb1596b8948344..1b9c7af7765f0a855966baba96b32765784c6f3f 100644
|
| --- a/components/nacl/zygote/nacl_fork_delegate_linux.cc
|
| +++ b/components/nacl/zygote/nacl_fork_delegate_linux.cc
|
| @@ -198,8 +198,8 @@ void NaClForkDelegate::Init(const int sandboxdesc) {
|
| // because the existing limit may prevent the initial exec of
|
| // nacl_helper_bootstrap from succeeding, with its large address space
|
| // reservation.
|
| - std::set<int> max_these_limits;
|
| - max_these_limits.insert(RLIMIT_AS);
|
| + std::vector<int> max_these_limits;
|
| + max_these_limits.push_back(RLIMIT_AS);
|
| options.maximize_rlimits = &max_these_limits;
|
|
|
| if (!base::LaunchProcess(argv_to_launch, options, NULL))
|
|
|