summaryrefslogtreecommitdiffstats
path: root/base
diff options
context:
space:
mode:
Diffstat (limited to 'base')
-rw-r--r--base/worker_pool_linux.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/base/worker_pool_linux.cc b/base/worker_pool_linux.cc
index a650b3b..31fcef1 100644
--- a/base/worker_pool_linux.cc
+++ b/base/worker_pool_linux.cc
@@ -15,7 +15,9 @@
namespace {
const int kIdleSecondsBeforeExit = 10 * 60;
-const int kWorkerThreadStackSize = 64 * 1024;
+// A stack size of 64 KB is too small for the CERT_PKIXVerifyCert
+// function of NSS because of NSS bug 439169.
+const int kWorkerThreadStackSize = 128 * 1024;
class WorkerPoolImpl {
public: