From: Martin Mares Date: Tue, 26 Jul 2011 07:10:23 +0000 (+0200) Subject: Box: Allow /proc/self/maps X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=838fb3edf9936878e0e052942a15c2eb605a6916;p=eval.git Box: Allow /proc/self/maps --- diff --git a/box/box.c b/box/box.c index 7b670a2..71ec68c 100644 --- a/box/box.c +++ b/box/box.c @@ -425,6 +425,7 @@ static struct path_rule default_path_rules[] = { { "/proc/meminfo", A_YES }, { "/proc/self/stat", A_YES }, { "/proc/self/exe", A_YES }, // Needed by FPC 2.0.x runtime + { "/proc/self/maps", A_YES }, // Needed by glibc when it reports arena corruption }; static struct path_rule *user_path_rules;