From 3f5df75e7338489a0a77acbfa4f35d4f20e38bcc Mon Sep 17 00:00:00 2001 From: shyouhei Date: Fri, 7 Sep 2007 06:14:19 +0000 Subject: * ruby.c (rubylib_mangled_path): eliminate RSTRING_PTR [ruby-dev:31679] * ruby.c (push_include_cygwin): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_5@13377 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ruby.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'ruby.c') diff --git a/ruby.c b/ruby.c index 51d8a7c845..087da558de 100644 --- a/ruby.c +++ b/ruby.c @@ -162,7 +162,7 @@ rubylib_mangled_path(const char *s, unsigned int l) return rb_str_new(s, l); } ret = rb_str_new(0, l + newl - oldl); - ptr = RSTRING_PTR(ret); + ptr = RSTRING(ret)->ptr; memcpy(ptr, newp, newl); memcpy(ptr + newl, s + oldl, l - oldl); ptr[l + newl - oldl] = 0; @@ -218,11 +218,11 @@ push_include_cygwin(const char *path) if (*s) { if (!buf) { buf = rb_str_new(p, len); - p = RSTRING_PTR(buf); + p = RSTRING(buf)->ptr; } else { rb_str_resize(buf, len); - p = strncpy(RSTRING_PTR(buf), p, len); + p = strncpy(RSTRING(buf)->ptr, p, len); } } if (cygwin_conv_to_posix_path(p, rubylib) == 0) -- cgit v1.2.3