Skip to content
Snippets Groups Projects
Commit 84cbfb16 authored by Jack Nagel's avatar Jack Nagel
Browse files

Open files in binary mode where appropriate

parent 9b7786fc
No related branches found
No related tags found
No related merge requests found
......@@ -174,7 +174,7 @@ class Pathname
# Get enough of the file to detect common file types
# POSIX tar magic has a 257 byte offset
# magic numbers stolen from /usr/share/file/magic/
case open { |f| f.read(262) }
case open('rb') { |f| f.read(262) }
when /^PK\003\004/n then :zip
when /^\037\213/n then :gzip
when /^BZh/n then :bzip2
......@@ -200,7 +200,7 @@ class Pathname
def incremental_hash(hasher)
incr_hash = hasher.new
buf = ""
open('r') { |f| incr_hash << buf while f.read(1024, buf) }
open('rb') { |f| incr_hash << buf while f.read(1024, buf) }
incr_hash.hexdigest
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment