]> git.sur5r.net Git - openldap/commitdiff
Fix saslregex init bug
authorKurt Zeilenga <kurt@openldap.org>
Wed, 7 Aug 2002 19:17:22 +0000 (19:17 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Wed, 7 Aug 2002 19:17:22 +0000 (19:17 +0000)
servers/slapd/saslauthz.c

index d6511b8256235b63c94e61ef7e7ee99bf9929365..82e68378b9897464dc80c1090ab54aac06f6cbf2 100644 (file)
@@ -199,6 +199,8 @@ int slap_sasl_regexp_config( const char *match, const char *replace )
        SaslRegexp = (SaslRegexp_t *) ch_realloc( (char *) SaslRegexp,
          (nSaslRegexp + 1) * sizeof(SaslRegexp_t) );
 
+       reg = &SaslRegexp[nSaslRegexp];
+
        reg->sr_match = ch_strdup( match );
        reg->sr_replace = ch_strdup( replace );