summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJeremy Evans <code@jeremyevans.net>2020-05-28 19:49:10 -0700
committerJeremy Evans <code@jeremyevans.net>2020-05-29 07:06:46 -0700
commit2ecfb88ee50510955acd3ae9fc94a5f109e7f109 (patch)
tree61e6604cfd3425f043fbf22f491bdc6d44a4cb07 /lib
parent0bd025ad6991f2159ef8bd596a79c89b79f5cc3e (diff)
Correctly remove temporary directory if path yielded is mutated
Another approach would be to freeze the string, but that could cause backwards compatibility issues. Fixes [Bug #16918]
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3159
Diffstat (limited to 'lib')
-rw-r--r--lib/tmpdir.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tmpdir.rb b/lib/tmpdir.rb
index c61365577e..e6cb327fc7 100644
--- a/lib/tmpdir.rb
+++ b/lib/tmpdir.rb
@@ -86,7 +86,7 @@ class Dir
}
if block_given?
begin
- yield path
+ yield path.dup
ensure
unless base
stat = File.stat(File.dirname(path))