1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Workaround with fbb4e3f96c in yaml/store.rb

This commit is contained in:
Hiroshi SHIBATA 2021-05-17 12:57:32 +09:00
parent ffdf0232ef
commit dfecc650c3
No known key found for this signature in database
GPG key ID: F9CF13417264FAC2

View file

@ -65,7 +65,7 @@ class YAML::Store < PStore
end
def load(content)
table = YAML.load(content)
table = YAML.unsafe_load(content)
if table == false
{}
else