mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
check call consistency
This commit is contained in:
parent
04cf328716
commit
12ea3e4304
1 changed files with 6 additions and 0 deletions
|
|
@ -3508,6 +3508,9 @@ hexNormalize(
|
|||
{
|
||||
int i;
|
||||
|
||||
assert( val != NULL );
|
||||
assert( normalized != NULL );
|
||||
|
||||
ber_dupbv_x( normalized, val, ctx );
|
||||
|
||||
for ( i = 0; i < normalized->bv_len; i++ ) {
|
||||
|
|
@ -3803,6 +3806,9 @@ csnNormalize(
|
|||
char *ptr;
|
||||
int i;
|
||||
|
||||
assert( val != NULL );
|
||||
assert( normalized != NULL );
|
||||
|
||||
assert( SLAP_MR_IS_VALUE_OF_SYNTAX( usage ) != 0 );
|
||||
|
||||
if ( BER_BVISEMPTY( val ) ) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue