X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=libraries%2Flibldap%2Fgetattr.c;h=dd18acd969eb0012ca6fe2baff38ae9e68fe182c;hb=b4243bc119b2f88318103176c7c671662c9ff371;hp=272dbce04ff0641ab65267871d8b02385086a413;hpb=b611ec4b87aa0858ba99fd114d99cff5054c52a3;p=openldap diff --git a/libraries/libldap/getattr.c b/libraries/libldap/getattr.c index 272dbce04f..dd18acd969 100644 --- a/libraries/libldap/getattr.c +++ b/libraries/libldap/getattr.c @@ -1,6 +1,6 @@ /* $OpenLDAP$ */ /* - * Copyright 1998-2000 The OpenLDAP Foundation, All Rights Reserved. + * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ /* Portions @@ -24,8 +24,9 @@ char * ldap_first_attribute( LDAP *ld, LDAPMessage *entry, BerElement **berout ) { - ber_tag_t rc; - ber_len_t len; + int rc; + ber_tag_t tag; + ber_len_t len = 0; char *attr; BerElement *ber; @@ -36,6 +37,8 @@ ldap_first_attribute( LDAP *ld, LDAPMessage *entry, BerElement **berout ) assert( entry != NULL ); assert( berout != NULL ); + *berout = NULL; + ber = ldap_alloc_ber_with_options( ld ); if( ber == NULL ) { return NULL; @@ -48,32 +51,31 @@ ldap_first_attribute( LDAP *ld, LDAPMessage *entry, BerElement **berout ) * us at the first attribute. */ - rc = ber_scanf( ber, "{xl{" /*}}*/, &attr, &len ); - - if( rc == LBER_ERROR ) { + tag = ber_scanf( ber, "{xl{" /*}}*/, &len ); + if( tag == LBER_ERROR ) { ld->ld_errno = LDAP_DECODING_ERROR; ber_free( ber, 0 ); - return NULL; - } - -#if 0 - if( len == 0 ) { return NULL; } -#endif - + /* set the length to avoid overrun */ rc = ber_set_option( ber, LBER_OPT_REMAINING_BYTES, &len ); - if( rc != LBER_OPT_SUCCESS ) { ld->ld_errno = LDAP_LOCAL_ERROR; ber_free( ber, 0 ); return NULL; } + if ( ber_pvt_ber_remaining( ber ) == 0 ) { + assert( len == 0 ); + ber_free( ber, 0 ); + return NULL; + } + assert( len != 0 ); + /* snatch the first attribute */ - rc = ber_scanf( ber, "{ax}", &attr ); - if( rc == LBER_ERROR ) { + tag = ber_scanf( ber, "{ax}", &attr ); + if( tag == LBER_ERROR ) { ld->ld_errno = LDAP_DECODING_ERROR; ber_free( ber, 0 ); return NULL; @@ -87,7 +89,7 @@ ldap_first_attribute( LDAP *ld, LDAPMessage *entry, BerElement **berout ) char * ldap_next_attribute( LDAP *ld, LDAPMessage *entry, BerElement *ber ) { - ber_tag_t rc; + ber_tag_t tag; char *attr; Debug( LDAP_DEBUG_TRACE, "ldap_next_attribute\n", 0, 0, 0 ); @@ -97,15 +99,13 @@ ldap_next_attribute( LDAP *ld, LDAPMessage *entry, BerElement *ber ) assert( entry != NULL ); assert( ber != NULL ); -#if 0 if ( ber_pvt_ber_remaining( ber ) == 0 ) { return NULL; } -#endif /* skip sequence, snarf attribute type, skip values */ - rc = ber_scanf( ber, "{ax}", &attr ); - if( rc == LBER_ERROR ) { + tag = ber_scanf( ber, "{ax}", &attr ); + if( tag == LBER_ERROR ) { ld->ld_errno = LDAP_DECODING_ERROR; return NULL; }