[ruby/un] wait_writable: close opened file

https://github.com/ruby/un/commit/b08aeb9c48
This commit is contained in:
Nobuyoshi Nakada 2022-11-30 19:06:12 +09:00 коммит произвёл git
Родитель c8bfbbc25e
Коммит cf3b305c43
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -256,7 +256,7 @@ def wait_writable
wait = (wait = options[:w]) ? Float(wait) : 0.2
argv.each do |file|
begin
File.open(file, "r+b")
File.open(file, "r+b") {}
rescue Errno::ENOENT
break
rescue Errno::EACCES => e