diff --git a/crash_reporter/user_collector.cc b/crash_reporter/user_collector.cc index 56e7bb912..6714f5239 100644 --- a/crash_reporter/user_collector.cc +++ b/crash_reporter/user_collector.cc @@ -90,9 +90,9 @@ void UserCollector::Initialize( directory_failure_ = directory_failure; filter_in_ = filter_in; - gid_t groups[] = { AID_ROOT, AID_SYSTEM, AID_DBUS }; + gid_t groups[] = { AID_ROOT, AID_SYSTEM, AID_DBUS, AID_READPROC }; if (setgroups(arraysize(groups), groups) != 0) { - PLOG(FATAL) << "Unable to set groups to root, system, and dbus"; + PLOG(FATAL) << "Unable to set groups to root, system, dbus, and readproc"; } }