Actions
Bug #12652
closedFor Dir.home encode passed user
Description
Currently Dir.home(user) expects that passed user will be already in appropriate encoding but if it's not it will fail because comparing with different encodings.
This causes TestDir#test_home to fail.
user = ENV['USER']
puts Dir.home(user)
fails with
`home': user Dāvis doesn't exist (ArgumentError)
On Linux it will fail too if passed user is in different encoding than locale.
I've attached a patch which fixes this.
Files
Updated by shyouhei (Shyouhei Urabe) about 8 years ago
- Status changed from Open to Assigned
- Assignee set to naruse (Yui NARUSE)
Updated by naruse (Yui NARUSE) almost 8 years ago
- Status changed from Assigned to Closed
Applied in changeset r56600.
- file.c (rb_home_dir_of): convert given username into filesystem
encoding. [ruby-core:76682] [Bug #12652]
patched by Dāvis Mosāns
Actions
Like0
Like0Like0