mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-16 11:57:39 -05:00
ldap_sort_entries() should try to malloc(0) when the count is zero.
should also return error in ldap_count_entries returns an error.
This commit is contained in:
parent
98f2462af0
commit
2c4e2fbfb2
1 changed files with 12 additions and 0 deletions
|
|
@ -91,6 +91,18 @@ ldap_sort_entries(
|
|||
|
||||
count = ldap_count_entries( ld, *chain );
|
||||
|
||||
|
||||
if ( count < 0 ) {
|
||||
if( ld != NULL ) {
|
||||
ld->ld_errno = LDAP_PARAM_ERROR;
|
||||
}
|
||||
return -1;
|
||||
|
||||
} else if ( count < 2 ) {
|
||||
/* zero or one entries -- already sorted! */
|
||||
return 0;
|
||||
}
|
||||
|
||||
if ( (et = (struct entrything *) malloc( count *
|
||||
sizeof(struct entrything) )) == NULL ) {
|
||||
ld->ld_errno = LDAP_NO_MEMORY;
|
||||
|
|
|
|||
Loading…
Reference in a new issue