mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-18 18:18:06 -05:00
assert fixes
This commit is contained in:
parent
05540728b5
commit
4d4d3f00a2
1 changed files with 2 additions and 3 deletions
|
|
@ -65,7 +65,7 @@ ldap_extended_operation(
|
|||
|
||||
assert( ld != NULL );
|
||||
assert( LDAP_VALID( ld ) );
|
||||
assert( reqoid != NULL || *reqoid == '\0' );
|
||||
assert( reqoid != NULL && *reqoid != '\0' );
|
||||
assert( msgidp != NULL );
|
||||
|
||||
/* must be version 3 (or greater) */
|
||||
|
|
@ -139,8 +139,7 @@ ldap_extended_operation_s(
|
|||
|
||||
assert( ld != NULL );
|
||||
assert( LDAP_VALID( ld ) );
|
||||
assert( reqoid != NULL || *reqoid == '\0' );
|
||||
assert( retoidp != NULL || retdatap != NULL );
|
||||
assert( reqoid != NULL && *reqoid != '\0' );
|
||||
|
||||
rc = ldap_extended_operation( ld, reqoid, reqdata,
|
||||
sctrls, cctrls, &msgid );
|
||||
|
|
|
|||
Loading…
Reference in a new issue