mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ITS#10343 Fix a memory leak in function slap_uuidstr_from_normalized
This commit is contained in:
parent
f00339df9e
commit
ddea2bc669
1 changed files with 1 additions and 1 deletions
|
|
@ -6169,7 +6169,7 @@ slap_uuidstr_from_normalized(
|
|||
new->bv_len = 36;
|
||||
|
||||
if ( ( new->bv_val = slap_sl_malloc( new->bv_len + 1, ctx ) ) == NULL ) {
|
||||
rc = 1;
|
||||
rc = -1;
|
||||
goto done;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue