Skip to content

Commit

Permalink
[ruby/rdoc] Use Marshal.load io instead of Marshal.load io.read
Browse files Browse the repository at this point in the history
  • Loading branch information
znz authored and matzbot committed Mar 2, 2022
1 parent 0c90ca4 commit fd2e1d3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/rdoc/store.rb
Expand Up @@ -557,7 +557,7 @@ def load_cache
#orig_enc = @encoding

File.open cache_path, 'rb' do |io|
@cache = Marshal.load io.read
@cache = Marshal.load io
end

load_enc = @cache[:encoding]
Expand Down Expand Up @@ -616,7 +616,7 @@ def load_class_data klass_name
file = class_file klass_name

File.open file, 'rb' do |io|
Marshal.load io.read
Marshal.load io
end
rescue Errno::ENOENT => e
error = MissingFileError.new(self, file, klass_name)
Expand All @@ -631,7 +631,7 @@ def load_method klass_name, method_name
file = method_file klass_name, method_name

File.open file, 'rb' do |io|
obj = Marshal.load io.read
obj = Marshal.load io
obj.store = self
obj.parent =
find_class_or_module(klass_name) || load_class(klass_name) unless
Expand All @@ -651,7 +651,7 @@ def load_page page_name
file = page_file page_name

File.open file, 'rb' do |io|
obj = Marshal.load io.read
obj = Marshal.load io
obj.store = self
obj
end
Expand Down

0 comments on commit fd2e1d3

Please sign in to comment.