From b25b9569e55ece9e7a4f3971b412d67ff804c504 Mon Sep 17 00:00:00 2001 From: akr Date: Sat, 23 Jun 2012 06:23:35 +0000 Subject: * internal.h (rb_execarg): add chdir_given and chdir_dir fields. * process.c (EXEC_OPTION_CHDIR): removed. (mark_exec_arg): mark chdir_dir field. (rb_execarg_addopt): update the new fields, instead of options array. (rb_execarg_run_options): use the new fields. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36195 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 9 +++++++++ internal.h | 2 ++ process.c | 17 ++++++++--------- 3 files changed, 19 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8ee9546f7f..c449f21764 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +Sat Jun 23 14:29:25 2012 Tanaka Akira + + * internal.h (rb_execarg): add chdir_given and chdir_dir fields. + + * process.c (EXEC_OPTION_CHDIR): removed. + (mark_exec_arg): mark chdir_dir field. + (rb_execarg_addopt): update the new fields, instead of options array. + (rb_execarg_run_options): use the new fields. + Sat Jun 23 13:20:47 2012 Tanaka Akira * internal.h (rb_execarg): add close_others_given, close_others_do and diff --git a/internal.h b/internal.h index 140df9894f..b6c7dda7a9 100644 --- a/internal.h +++ b/internal.h @@ -182,9 +182,11 @@ struct rb_execarg { unsigned unsetenv_others_do : 1; unsigned close_others_given : 1; unsigned close_others_do : 1; + unsigned chdir_given : 1; pid_t pgroup_pgid; /* asis(-1), new pgroup(0), specified pgroup (0envp_str); rb_gc_mark(eargp->envp_buf); rb_gc_mark(eargp->dup2_tmpbuf); + rb_gc_mark(eargp->chdir_dir); } static void @@ -1622,12 +1622,12 @@ rb_execarg_addopt(VALUE execarg_obj, VALUE key, VALUE val) eargp->unsetenv_others_do = RTEST(val) ? 1 : 0; } else if (id == rb_intern("chdir")) { - if (!NIL_P(rb_ary_entry(options, EXEC_OPTION_CHDIR))) { + if (eargp->chdir_given) { rb_raise(rb_eArgError, "chdir option specified twice"); } FilePathValue(val); - rb_ary_store(options, EXEC_OPTION_CHDIR, - hide_obj(rb_str_dup(val))); + eargp->chdir_given = 1; + eargp->chdir_dir = hide_obj(rb_str_dup(val)); } else if (id == rb_intern("umask")) { mode_t cmask = NUM2MODET(val); @@ -2818,15 +2818,14 @@ rb_execarg_run_options(const struct rb_execarg *eargp, struct rb_execarg *sargp, return -1; } - obj = rb_ary_entry(options, EXEC_OPTION_CHDIR); - if (!NIL_P(obj)) { + if (eargp->chdir_given) { if (sargp) { char *cwd = my_getcwd(); - rb_ary_store(sargp->options, EXEC_OPTION_CHDIR, - hide_obj(rb_str_new2(cwd))); + sargp->chdir_given = 1; + sargp->chdir_dir = hide_obj(rb_str_new2(cwd)); xfree(cwd); } - if (chdir(RSTRING_PTR(obj)) == -1) { /* async-signal-safe */ + if (chdir(RSTRING_PTR(eargp->chdir_dir)) == -1) { /* async-signal-safe */ ERRMSG("chdir"); return -1; } -- cgit v1.2.3