| Index: chrome/browser/browser_main_posix.cc
|
| diff --git a/chrome/browser/browser_main_posix.cc b/chrome/browser/browser_main_posix.cc
|
| index cd88cc7946bfc14f11329bdd8360e19196810374..2a61dd3deb979952e6d10eb74a373c1bbf9bf6f3 100644
|
| --- a/chrome/browser/browser_main_posix.cc
|
| +++ b/chrome/browser/browser_main_posix.cc
|
| @@ -168,6 +168,7 @@ void ShutdownDetector::ThreadMain() {
|
| // limit, whichever is lower.
|
| void SetFileDescriptorLimit(unsigned int max_descriptors) {
|
| struct rlimit limits;
|
| + return;
|
| if (getrlimit(RLIMIT_NOFILE, &limits) == 0) {
|
| unsigned int new_limit = max_descriptors;
|
| if (limits.rlim_max > 0 && limits.rlim_max < max_descriptors) {
|
|
|