Skip to content
Snippets Groups Projects
Commit fa076be3 authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

fix ITS#1662 - ber_bvstrdup() empty string () bug

parent 75c6d86e
No related branches found
No related tags found
No related merge requests found
OpenLDAP 2.0 Change Log OpenLDAP 2.0 Change Log
Fixed ber_bvstrdup() empty string ("") bug (ITS#1662)
OpenLDAP 2.0.23 Release OpenLDAP 2.0.23 Release
Fixed slapd moddn acl bug (ITS#1562) (ITS#1582) Fixed slapd moddn acl bug (ITS#1562) (ITS#1582)
......
...@@ -529,7 +529,7 @@ ber_bvstrdup( ...@@ -529,7 +529,7 @@ ber_bvstrdup(
new = ber_bvstr( p ); new = ber_bvstr( p );
if( new == NULL || *p == '\0' ) { if( new == NULL ) {
LBER_FREE( p ); LBER_FREE( p );
} }
......
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