remove spaces at EOL

This commit is contained in:
Auxilus
2020-03-24 18:08:34 +05:30
parent 892cab094a
commit 26b2ec3d84
28 changed files with 91 additions and 91 deletions
+3 -3
View File
@@ -85,12 +85,12 @@ module Msf
# @return [Byte, nil] the extracted byte if success, nil otherwise
def extract_byte(io)
byte_raw = io.read(1)
unless byte_raw && byte_raw.length == 1
return nil
end
byte = byte_raw.unpack('C')[0]
byte
end
@@ -120,7 +120,7 @@ module Msf
unless ref && (ref == 'UnicastRef' || ref == 'UnicastRef2')
return nil
end
if ref == 'UnicastRef2'
form = extract_byte(io)