Merge pull request #3045 from bmorg/master
core: read box file in binary mode for checksum
This commit is contained in:
commit
19c71c1d9c
|
@ -26,7 +26,7 @@ class FileChecksum
|
|||
def checksum
|
||||
digest = @digest_klass.new
|
||||
|
||||
File.open(@path, "r") do |f|
|
||||
File.open(@path, "rb") do |f|
|
||||
while !f.eof
|
||||
begin
|
||||
buf = f.readpartial(BUFFER_SIZE)
|
||||
|
|
Loading…
Reference in New Issue