Skip to content
Snippets Groups Projects
Commit 613bf0b0 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Return LDAP_BAD_PARAM if res is not EXOP result.

Skip over referrals that might exist in EXOP result.
parent 09a007c0
Branches
Tags
No related merge requests found
......@@ -170,6 +170,11 @@ ldap_parse_extended_result (
return ld->ld_errno;
}
if( res->lm_msgtype == LDAP_RES_EXTENDED ) {
ld->ld_errno = LDAP_PARAM_ERROR;
return ld->ld_errno;
}
if( retoidp != NULL ) *retoidp = NULL;
if( retdatap != NULL ) *retdatap = NULL;
......@@ -199,6 +204,15 @@ ldap_parse_extended_result (
tag = ber_peek_tag( ber, &len );
if( tag == LDAP_TAG_REFERRAL ) {
/* skip over referral */
tag = ber_scanf( ber, "x" );
if( tag != LBER_ERROR ) {
tag = ber_peek_tag( ber, &len );
}
}
if( tag == LDAP_TAG_EXOP_RES_OID ) {
/* we have a resoid */
if( ber_scanf( ber, "a", &resoid ) == LBER_ERROR ) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment