summaryrefslogtreecommitdiff
path: root/ext/pty/pty.c
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pty/pty.c')
-rw-r--r--ext/pty/pty.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/ext/pty/pty.c b/ext/pty/pty.c
index 6462c3c7ca..0438ca7e9b 100644
--- a/ext/pty/pty.c
+++ b/ext/pty/pty.c
@@ -442,12 +442,10 @@ pty_getpty(self, shell)
rfptr->mode = rb_io_mode_flags("r");
rfptr->f = fdopen(info.fd, "r");
rfptr->path = strdup(RSTRING(shell)->ptr);
- rb_obj_call_init((VALUE)rport, 1, &shell);
wfptr->mode = rb_io_mode_flags("w");
wfptr->f = fdopen(dup(info.fd), "w");
wfptr->path = strdup(RSTRING(shell)->ptr);
- rb_obj_call_init((VALUE)wport, 1, &shell);
res = rb_ary_new2(2);
rb_ary_store(res,0,(VALUE)rport);