From 9af8102225d13f3f5fd49e6e12f4819e5e1a437d Mon Sep 17 00:00:00 2001 From: nobu Date: Tue, 16 Oct 2012 05:56:25 +0000 Subject: file.c: ASCII-compatible * file.c (rb_file_join): need to check again after any conversion run. [ruby-core:48012] [Bug #7168] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37216 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'file.c') diff --git a/file.c b/file.c index 3d1ffe4036..5951d7b5b5 100644 --- a/file.c +++ b/file.c @@ -3917,6 +3917,7 @@ rb_file_join(VALUE ary, VALUE sep) long len, i; VALUE result, tmp; const char *name, *tail; + int checked = TRUE; if (RARRAY_LEN(ary) == 0) return rb_str_new(0, 0); @@ -3942,6 +3943,7 @@ rb_file_join(VALUE ary, VALUE sep) tmp = RARRAY_PTR(ary)[i]; switch (TYPE(tmp)) { case T_STRING: + if (!checked) check_path_encoding(tmp); StringValueCStr(tmp); break; case T_ARRAY: @@ -3958,6 +3960,7 @@ rb_file_join(VALUE ary, VALUE sep) break; default: FilePathStringValue(tmp); + checked = FALSE; } RSTRING_GETMEM(result, name, len); if (i == 0) { -- cgit v1.2.3