]> git.sur5r.net Git - openldap/commitdiff
Fix leak of default filter.
authorKurt Zeilenga <kurt@openldap.org>
Fri, 23 Jul 1999 22:02:57 +0000 (22:02 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Fri, 23 Jul 1999 22:02:57 +0000 (22:02 +0000)
libraries/libldap/url.c

index 4f0a5635f253403ecce56246ec5eb75a7c9c6b28..57c4391c806f125c1c29e32e9ca92c0de1171e92 100644 (file)
@@ -210,6 +210,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
     ludp->lud_filter = NULL;
        ludp->lud_ldaps = ldaps;
        ludp->lud_scope = LDAP_SCOPE_BASE;
+
        ludp->lud_filter = LDAP_STRDUP("(objectClass=*)");
 
        if( ludp->lud_filter == NULL ) {
@@ -359,6 +360,7 @@ ldap_url_parse( LDAP_CONST char *url_in, LDAPURLDesc **ludpp )
                        return LDAP_URL_ERR_BADFILTER;
                }
 
+               LDAP_FREE( ludp->lud_filter );
                ludp->lud_filter = LDAP_STRDUP( p );
 
                if( ludp->lud_filter == NULL ) {