summaryrefslogtreecommitdiff
path: root/lib/rexml/encodings/UNILE.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rexml/encodings/UNILE.rb')
-rw-r--r--lib/rexml/encodings/UNILE.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rexml/encodings/UNILE.rb b/lib/rexml/encodings/UNILE.rb
index 0560a08361..d054140c40 100644
--- a/lib/rexml/encodings/UNILE.rb
+++ b/lib/rexml/encodings/UNILE.rb
@@ -18,7 +18,7 @@ module REXML
def decode_unile(str)
array_enc=str.unpack('C*')
array_utf8 = []
- 2.step(array_enc.size-1, 2){|i|
+ 0.step(array_enc.size-1, 2){|i|
array_utf8 << (array_enc.at(i) + array_enc.at(i+1)*0x100)
}
array_utf8.pack('U*')