mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-11-21 01:04:44 +08:00
fix ITS#1662 - ber_bvstrdup() empty string () bug
This commit is contained in:
parent
75c6d86e7a
commit
fa076be37d
1
CHANGES
1
CHANGES
@ -1,4 +1,5 @@
|
||||
OpenLDAP 2.0 Change Log
|
||||
Fixed ber_bvstrdup() empty string ("") bug (ITS#1662)
|
||||
|
||||
OpenLDAP 2.0.23 Release
|
||||
Fixed slapd moddn acl bug (ITS#1562) (ITS#1582)
|
||||
|
@ -529,7 +529,7 @@ ber_bvstrdup(
|
||||
|
||||
new = ber_bvstr( p );
|
||||
|
||||
if( new == NULL || *p == '\0' ) {
|
||||
if( new == NULL ) {
|
||||
LBER_FREE( p );
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user