mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 17:19:43 -05:00
In ldap_extended_operation_s, check for NULL retoidp and retdatap
before storing NULL.
This commit is contained in:
parent
c5de2fd6fd
commit
56cba7f97c
1 changed files with 2 additions and 2 deletions
|
|
@ -138,8 +138,8 @@ ldap_extended_operation_s(
|
|||
return( ld->ld_errno );
|
||||
}
|
||||
|
||||
*retoidp = NULL;
|
||||
*retdatap = NULL;
|
||||
if ( retoidp != NULL ) *retoidp = NULL;
|
||||
if ( retdatap != NULL ) *retdatap = NULL;
|
||||
|
||||
rc = ldap_parse_extended_result( ld, res, retoidp, retdatap, 0 );
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue