diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-06 09:59:31 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2010-08-06 09:59:31 +0000 |
commit | 8aa6059dbfcf840b9e7870ca9639194e707b05a0 (patch) | |
tree | 9e93d17818f76bc9ae03d93429c6ae1d5532817c /file.c | |
parent | b4ba3ba6410d33e4ac15cce8b633f8d1f525f107 (diff) | |
download | bundler-8aa6059dbfcf840b9e7870ca9639194e707b05a0.tar.gz |
* 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
Diffstat (limited to 'file.c')
-rw-r--r-- | file.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -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 { |