Skip to content

Commit d78dc1e

Browse files
authored
Merge pull request #285 from patelanuj28/patch-1
Fixed Exception: incompatible character encodings: ASCII-8BIT and UTF-8 in filter.rb
2 parents 258bf07 + 61890b5 commit d78dc1e

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

lib/net/ldap/filter.rb

+8-1
Original file line numberDiff line numberDiff line change
@@ -645,8 +645,15 @@ def match(entry)
645645

646646
##
647647
# Converts escaped characters (e.g., "\\28") to unescaped characters
648+
# @note slawson20170317: Don't attempt to unescape 16 byte binary data which we assume are objectGUIDs
649+
# The binary form of 5936AE79-664F-44EA-BCCB-5C39399514C6 triggers a BINARY -> UTF-8 conversion error
648650
def unescape(right)
649-
right.to_s.gsub(/\\([a-fA-F\d]{2})/) { [$1.hex].pack("U") }
651+
right = right.to_s
652+
if right.length == 16 && right.encoding == Encoding::BINARY
653+
right
654+
else
655+
right.to_s.gsub(/\\([a-fA-F\d]{2})/) { [$1.hex].pack("U") }
656+
end
650657
end
651658
private :unescape
652659

0 commit comments

Comments
 (0)