зеркало из https://github.com/github/ruby.git
[ruby/rss] Only check taint on Ruby <2.7
Ruby 2.7 deprecates taint and it no longer has an effect.
This commit is contained in:
Родитель
50013f7ebc
Коммит
23f1fb0663
|
@ -120,7 +120,7 @@ module RSS
|
||||||
|
|
||||||
if uri.respond_to?(:read)
|
if uri.respond_to?(:read)
|
||||||
uri.read
|
uri.read
|
||||||
elsif !rss.tainted? and File.readable?(rss)
|
elsif (RUBY_VERSION >= '2.7' || !rss.tainted?) and File.readable?(rss)
|
||||||
File.open(rss) {|f| f.read}
|
File.open(rss) {|f| f.read}
|
||||||
else
|
else
|
||||||
rss
|
rss
|
||||||
|
|
Загрузка…
Ссылка в новой задаче