Skip to content
Snippets Groups Projects
Commit 8af02353 authored by Quanah Gibson-Mount's avatar Quanah Gibson-Mount
Browse files

ITS#6638

parent d009ca68
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@ OpenLDAP 2.4 Change Log
OpenLDAP 2.4.24 Engineering
Fixed liblber to not close invalid sockets (ITS#6585)
Fixed ldapsearch segfault with deref (ITS#6638)
Fixed slapd acl parsing overflow (ITS#6611)
Fixed slapd modify to return actual error (ITS#6581)
Fixed slapd-bdb entry cache delete failure (ITS#6577)
......
......@@ -594,7 +594,7 @@ handle_private_option( int i )
exit( EXIT_FAILURE );
}
for ( ispecs = 0; specs[ ispecs ] != NULL; ispecs++ )
/* count'em */
/* count'em */ ;
ds = ldap_memcalloc( ispecs + 1, sizeof( LDAPDerefSpec ) );
if ( ds == NULL ) {
......@@ -1334,6 +1334,9 @@ getNextPage:
if ( derefval.bv_val != NULL ) {
ldap_memfree( derefval.bv_val );
}
if ( def_urlpre != NULL ) {
ber_memfree( def_urlpre );
}
if ( c ) {
for ( ; save_nctrls-- > 0; ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment