summaryrefslogtreecommitdiff
path: root/process.c
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-26 12:52:25 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-04-26 12:52:25 +0000
commit514715250a2a4d69ea0a4ce3123e2e2f558f3109 (patch)
treec8b543090edb6016a11fda3b22c55b4eb5b01cea /process.c
parent6fb36ebab0644f2b724b144b0a163148c87298aa (diff)
* include/ruby/intern.h (rb_hash_dup): declared.
* hash.c (rb_hash_dup): new function. * process.c (rb_spawn_internal): don't modify option hash. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@16210 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'process.c')
-rw-r--r--process.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/process.c b/process.c
index cb0ab4f4ac..6a1b84fa5e 100644
--- a/process.c
+++ b/process.c
@@ -2560,6 +2560,10 @@ rb_spawn_internal(int argc, VALUE *argv, int default_close_others)
opthash = rb_hash_new();
RBASIC(opthash)->klass = 0;
}
+ if (RBASIC(opthash)->klass) {
+ opthash = rb_hash_dup(opthash);
+ RBASIC(opthash)->klass = 0;
+ }
if (!st_lookup(RHASH_TBL(opthash), close_others, 0))
rb_hash_aset(opthash, close_others, Qtrue);
}