]> git.sur5r.net Git - openldap/commitdiff
overrun protection doesn't work... hmmm....
authorKurt Zeilenga <kurt@openldap.org>
Sat, 16 Sep 2000 01:05:14 +0000 (01:05 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Sat, 16 Sep 2000 01:05:14 +0000 (01:05 +0000)
libraries/libldap/getattr.c

index 272dbce04ff0641ab65267871d8b02385086a413..d2a478c63424766acf1f4fba8b9185a58e4a3f80 100644 (file)
@@ -24,7 +24,8 @@
 char *
 ldap_first_attribute( LDAP *ld, LDAPMessage *entry, BerElement **berout )
 {
-       ber_tag_t rc;
+       int rc;
+       ber_tag_t tag;
        ber_len_t len;
        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,9 +51,8 @@ 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{" /*}}*/, &attr, &len );
+       if( tag == LBER_ERROR ) {
                ld->ld_errno = LDAP_DECODING_ERROR;
                ber_free( ber, 0 );
                return  NULL;
@@ -62,18 +64,19 @@ ldap_first_attribute( LDAP *ld, LDAPMessage *entry, BerElement **berout )
        }
 #endif
        
+#if 0
        /* 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;
        }
+#endif
 
        /* 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 +90,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 );
@@ -104,8 +107,8 @@ ldap_next_attribute( LDAP *ld, LDAPMessage *entry, BerElement *ber )
 #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;
        }