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

ITS#5358

parent 16e54007
No related branches found
No related tags found
No related merge requests found
...@@ -25,6 +25,7 @@ OpenLDAP 2.4.8 Engineering ...@@ -25,6 +25,7 @@ OpenLDAP 2.4.8 Engineering
Fixed slapd cn=config crash on delete (ITS#5343) Fixed slapd cn=config crash on delete (ITS#5343)
Fixed slapd cn=config global acls (ITS#5352) Fixed slapd cn=config global acls (ITS#5352)
Fixed slapd str2entry with no attrs (ITS#5308) Fixed slapd str2entry with no attrs (ITS#5308)
Fixed slapd-bdb crash with modrdn (ITS#5358)
Fixed slapd-bdb segv with bdb4.6 (ITS#5322) Fixed slapd-bdb segv with bdb4.6 (ITS#5322)
Fixed slapd-bdb modrdn to same dn (ITS#5319) Fixed slapd-bdb modrdn to same dn (ITS#5319)
Added slapd-bdb/slapd-hdb DB encryption (ITS#5359) Added slapd-bdb/slapd-hdb DB encryption (ITS#5359)
......
...@@ -739,6 +739,8 @@ retry: /* transaction retry */ ...@@ -739,6 +739,8 @@ retry: /* transaction retry */
} else { } else {
rs->sr_err = LDAP_X_NO_OPERATION; rs->sr_err = LDAP_X_NO_OPERATION;
ltid = NULL; ltid = NULL;
/* Only free attrs if they were dup'd. */
if ( dummy.e_attrs == e->e_attrs ) dummy.e_attrs = NULL;
goto return_results; goto return_results;
} }
......
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