mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-03 13:40:37 -05:00
ITS#6005 realloc should be ch_realloc
This commit is contained in:
parent
34c537a046
commit
5152ea19a3
1 changed files with 1 additions and 1 deletions
|
|
@ -195,7 +195,7 @@ slap_sl_mem_create(
|
|||
if (size > (char *)sh->sh_end - (char *)sh->sh_base) {
|
||||
void *newptr;
|
||||
|
||||
newptr = realloc( sh->sh_base, size );
|
||||
newptr = ch_realloc( sh->sh_base, size );
|
||||
if ( newptr == NULL ) return NULL;
|
||||
sh->sh_base = newptr;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue