]> git.sur5r.net Git - openldap/commitdiff
fix uninitialized counter in matched values
authorKurt Zeilenga <kurt@openldap.org>
Fri, 3 May 2002 19:00:52 +0000 (19:00 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 3 May 2002 19:00:52 +0000 (19:00 +0000)
servers/slapd/result.c

index 1f88150e9aa7227ab8e1c14338262273bb17dba1..4e10755101b33bfc10efe31d7620a912f090933a 100644 (file)
@@ -731,7 +731,7 @@ send_search_entry(
         * to particular value of attribute an equals 1 if value matches
         * to ValuesReturnFilter or 0 if not
         */     
-       for ( a = e->e_attrs; a != NULL; a = a->a_next ) i++;
+       for ( a = e->e_attrs, i=0; a != NULL; a = a->a_next ) i++;
        e_flags = ch_malloc ( i * sizeof(a_flags) );
        
        for ( a = e->e_attrs, i=0; a != NULL; a = a->a_next, i++ ) {