mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-28 02:29:34 -05:00
patch for ITS#3296 - do not use sl_malloc on normalized attr values
This commit is contained in:
parent
7f22fd5b45
commit
e6df94946d
1 changed files with 1 additions and 1 deletions
|
|
@ -1977,7 +1977,7 @@ UUIDNormalize(
|
|||
int i;
|
||||
int j;
|
||||
normalized->bv_len = 16;
|
||||
normalized->bv_val = slap_sl_malloc( normalized->bv_len+1, ctx );
|
||||
normalized->bv_val = ch_malloc( normalized->bv_len + 1 );
|
||||
|
||||
for( i=0, j=0; i<36; i++ ) {
|
||||
unsigned char nibble;
|
||||
|
|
|
|||
Loading…
Reference in a new issue