summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authornagachika <nagachika@ruby-lang.org>2020-07-23 14:02:05 +0900
committernagachika <nagachika@ruby-lang.org>2020-07-23 14:02:05 +0900
commit4f714939efde6d6b3b74c09e1e151e6ce6818b90 (patch)
tree2309e9bbc15519f62f8b70cf2a0e7a7983c0e274 /lib
parent9da6470d7b3aa136b4b92469c8bbc522beb1ac31 (diff)
merge revision(s) e04418bb16cd99b4a4402e7457d3bdc967284f98: [Backport #16830]
[ruby/uri] Check if DN exists https://bugs.ruby-lang.org/issues/16830 https://github.com/ruby/uri/commit/b4bf8c1217
Diffstat (limited to 'lib')
-rw-r--r--lib/uri/ldap.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/uri/ldap.rb b/lib/uri/ldap.rb
index 228c793cbd..61ec3d3f12 100644
--- a/lib/uri/ldap.rb
+++ b/lib/uri/ldap.rb
@@ -119,6 +119,7 @@ module URI
# Private method to cleanup +dn+ from using the +path+ component attribute.
def parse_dn
+ raise InvalidURIError, 'bad LDAP URL' unless @path
@dn = @path[1..-1]
end
private :parse_dn