mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-06-08 16:22:09 -04:00
Import dnssrv free fix from head
This commit is contained in:
parent
ba118c2c74
commit
6978968eed
2 changed files with 5 additions and 3 deletions
5
CHANGES
5
CHANGES
|
|
@ -3,7 +3,10 @@ OpenLDAP 2.0 Change Log
|
|||
OpenLDAP 2.0.20 Engineering
|
||||
Fixed slapd ACL peername/sockname exact match bug (ITS#1516)
|
||||
Fixed -lldap cache debug bug (ITS#1501)
|
||||
Updated BerkeleyDB 4 support
|
||||
Fixed -lldap dnssrv free bug
|
||||
Build environment
|
||||
Updated BerkeleyDB 4 support
|
||||
Updated schema files
|
||||
|
||||
OpenLDAP 2.0.19 Release
|
||||
Fixed back-ldbm not filter indexing (ITS#1405)
|
||||
|
|
|
|||
|
|
@ -210,8 +210,7 @@ int ldap_domain2hostlist(
|
|||
|
||||
request = LDAP_MALLOC(strlen(domain) + sizeof("_ldap._tcp."));
|
||||
if (request == NULL) {
|
||||
rc = LDAP_NO_MEMORY;
|
||||
goto out;
|
||||
return LDAP_NO_MEMORY;
|
||||
}
|
||||
sprintf(request, "_ldap._tcp.%s", domain);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue