mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-23 16:19:35 -05:00
ITS#3552 fix bogus asserts
This commit is contained in:
parent
2964bfc48b
commit
aa74f02cb2
1 changed files with 2 additions and 3 deletions
|
|
@ -61,7 +61,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) */
|
||||
|
|
@ -131,8 +131,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