diff options
author | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-22 21:07:36 +0000 |
---|---|---|
committer | shyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-09-22 21:07:36 +0000 |
commit | 13d5a288271077f74547b803443d821b2cfa0bfb (patch) | |
tree | 8fa5da2a53ef6574f6401a00f9b9ae1d33afd5a5 /ext | |
parent | 756354d4a5fd8ca84f5d6100a53da57cb3448a43 (diff) |
* ext/stringio/stringio.c (strio_init): separate from strio_initialize
to share with strio_reopen properly. [ruby-Bugs-13919]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_6@13487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r-- | ext/stringio/stringio.c | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/ext/stringio/stringio.c b/ext/stringio/stringio.c index a64aaf837c..7355afd770 100644 --- a/ext/stringio/stringio.c +++ b/ext/stringio/stringio.c @@ -136,6 +136,7 @@ check_modifiable(ptr) static VALUE strio_s_allocate _((VALUE)); static VALUE strio_s_open _((int, VALUE *, VALUE)); +static void strio_init _((int, VALUE *, struct StringIO *)); static VALUE strio_initialize _((int, VALUE *, VALUE)); static VALUE strio_finalize _((VALUE)); static VALUE strio_self _((VALUE)); @@ -217,13 +218,24 @@ strio_initialize(argc, argv, self) VALUE self; { struct StringIO *ptr = check_strio(self); - VALUE string, mode; - int trunc = Qfalse; if (!ptr) { DATA_PTR(self) = ptr = strio_alloc(); } rb_call_super(0, 0); + strio_init(argc, argv, ptr); + return self; +} + +static void +strio_init(argc, argv, ptr) + int argc; + VALUE *argv; + struct StringIO *ptr; +{ + VALUE string, mode; + int trunc = Qfalse; + switch (rb_scan_args(argc, argv, "02", &string, &mode)) { case 2: if (FIXNUM_P(mode)) { @@ -255,7 +267,6 @@ strio_initialize(argc, argv, self) break; } ptr->string = string; - return self; } static VALUE @@ -570,7 +581,8 @@ strio_reopen(argc, argv, self) if (argc == 1 && TYPE(*argv) != T_STRING) { return strio_copy(self, *argv); } - return strio_initialize(argc, argv, self); + strio_init(argc, argv, StringIO(self)); + return self; } /* |