mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
use ch_malloc for normailzed values
This commit is contained in:
parent
e6df94946d
commit
6baa9b1e2b
@ -1636,7 +1636,7 @@ telephoneNumberNormalize(
|
||||
/* validator should have refused an empty string */
|
||||
assert( val->bv_len );
|
||||
|
||||
q = normalized->bv_val = slap_sl_malloc( val->bv_len + 1, ctx );
|
||||
q = normalized->bv_val = ch_malloc( val->bv_len + 1 );
|
||||
|
||||
for( p = val->bv_val; *p; p++ ) {
|
||||
if ( ! ( ASCII_SPACE( *p ) || *p == '-' )) {
|
||||
@ -2045,7 +2045,7 @@ numericStringNormalize(
|
||||
|
||||
assert( val->bv_len );
|
||||
|
||||
normalized->bv_val = slap_sl_malloc( val->bv_len + 1, ctx );
|
||||
normalized->bv_val = ch_malloc( val->bv_len + 1 );
|
||||
|
||||
p = val->bv_val;
|
||||
q = normalized->bv_val;
|
||||
@ -2672,7 +2672,7 @@ generalizedTimeNormalize(
|
||||
}
|
||||
|
||||
len = sizeof("YYYYmmddHHMMSSZ")-1 + fraction.bv_len;
|
||||
normalized->bv_val = slap_sl_malloc( len + 1, ctx );
|
||||
normalized->bv_val = ch_malloc( len + 1 );
|
||||
if ( normalized->bv_val == NULL ) {
|
||||
return LBER_ERROR_MEMORY;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user