summaryrefslogtreecommitdiff
path: root/lib/rexml/encodings/UTF-16.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/encodings/UTF-16.rb')
-rw-r--r--lib/rexml/encodings/UTF-16.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rexml/encodings/UTF-16.rb b/lib/rexml/encodings/UTF-16.rb
index 792adfd44d..007c493d9c 100644
--- a/lib/rexml/encodings/UTF-16.rb
+++ b/lib/rexml/encodings/UTF-16.rb
@@ -16,7 +16,7 @@ module REXML
end
def decode_utf16(str)
- str = str[2..-1] if /^\376\377/ =~ str
+ str = str[2..-1] if /^\376\377/n =~ str
array_enc=str.unpack('C*')
array_utf8 = []
0.step(array_enc.size-1, 2){|i|