summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authornagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-29 17:43:01 +0000
committernagachika <nagachika@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2014-06-29 17:43:01 +0000
commit39d963422fce26165d685537fb1b745d20557f2b (patch)
tree8ca187918e138858a220c5b492a3338cec408826 /process.c
parent7d49e2bfc192126287fea10c2205822a98d128f1 (diff)
merge revision(s) r46075: [Backport #9856]
* process.c (proc_getgroups, proc_setgroups): use ALLOCV_N [Bug #9856] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_1@46615 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/process.c b/process.c
index 982286827d..2b926701a2 100644
--- a/process.c
+++ b/process.c
@@ -5662,7 +5662,7 @@ maxgroups(void)
static VALUE
proc_getgroups(VALUE obj)
{
- VALUE ary;
+ VALUE ary, tmp;
int i, ngroups;
rb_gid_t *groups;
@@ -5670,7 +5670,7 @@ proc_getgroups(VALUE obj)
if (ngroups == -1)
rb_sys_fail(0);
- groups = ALLOCA_N(rb_gid_t, ngroups);
+ groups = ALLOCV_N(rb_gid_t, tmp, ngroups);
ngroups = getgroups(ngroups, groups);
if (ngroups == -1)
@@ -5680,6 +5680,8 @@ proc_getgroups(VALUE obj)
for (i = 0; i < ngroups; i++)
rb_ary_push(ary, GIDT2NUM(groups[i]));
+ ALLOCV_END(tmp);
+
return ary;
}
#else
@@ -5706,6 +5708,7 @@ proc_setgroups(VALUE obj, VALUE ary)
{
int ngroups, i;
rb_gid_t *groups;
+ VALUE tmp;
PREPARE_GETGRNAM;
Check_Type(ary, T_ARRAY);
@@ -5714,7 +5717,7 @@ proc_setgroups(VALUE obj, VALUE ary)
if (ngroups > maxgroups())
rb_raise(rb_eArgError, "too many groups, %d max", maxgroups());
- groups = ALLOCA_N(rb_gid_t, ngroups);
+ groups = ALLOCV_N(rb_gid_t, tmp, ngroups);
for (i = 0; i < ngroups; i++) {
VALUE g = RARRAY_AREF(ary, i);
@@ -5726,6 +5729,8 @@ proc_setgroups(VALUE obj, VALUE ary)
if (setgroups(ngroups, groups) == -1) /* ngroups <= maxgroups */
rb_sys_fail(0);
+ ALLOCV_END(tmp);
+
return proc_getgroups(obj);
}
#else