From 8aa6059dbfcf840b9e7870ca9639194e707b05a0 Mon Sep 17 00:00:00 2001 From: nobu Date: Fri, 6 Aug 2010 09:59:31 +0000 Subject: * file.c (realpath_rec): rb_str_modify depends on the length, so resize instead. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28885 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ file.c | 3 +-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index dfc4039995..5b03e712b6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Fri Aug 6 18:59:23 2010 Nobuyoshi Nakada + + * file.c (realpath_rec): rb_str_modify depends on the length, so + resize instead. + Fri Aug 6 18:56:14 2010 Nobuyoshi Nakada * Makefile.in (clean-ext): fixed directories to be removed. diff --git a/file.c b/file.c index b541a7dba0..962fa9ac4e 100644 --- a/file.c +++ b/file.c @@ -3229,8 +3229,7 @@ realpath_rec(long *prefixlenp, VALUE *resolvedp, char *unresolved, VALUE loopche char *resolved_names = RSTRING_PTR(*resolvedp) + *prefixlenp; char *lastsep = rb_path_last_separator(resolved_names); long len = lastsep ? lastsep - resolved_names : 0; - rb_str_modify(*resolvedp); - rb_str_set_len(*resolvedp, *prefixlenp + len); + rb_str_resize(*resolvedp, *prefixlenp + len); } } else { -- cgit v1.2.3