X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=servers%2Fslapd%2Fback-ldap%2Fmodify.c;h=d2c0ea8b83c13b3af4f17377fe923f81205b2aee;hb=57e0ac008c992a9243d6152916a33ef0d2426aa1;hp=bea4dcbcd7506dad6d97c44963fd0492a01e4e91;hpb=7e2317c84211e550ef1f81847e9455782e98d644;p=openldap diff --git a/servers/slapd/back-ldap/modify.c b/servers/slapd/back-ldap/modify.c index bea4dcbcd7..d2c0ea8b83 100644 --- a/servers/slapd/back-ldap/modify.c +++ b/servers/slapd/back-ldap/modify.c @@ -1,7 +1,7 @@ /* modify.c - ldap backend modify function */ /* $OpenLDAP$ */ /* - * Copyright 1998-2002 The OpenLDAP Foundation, All Rights Reserved. + * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved. * COPYING RESTRICTIONS APPLY, see COPYRIGHT file */ /* This is an altered version */ @@ -89,12 +89,12 @@ ldap_back_modify( case REWRITE_REGEXEC_UNWILLING: send_ldap_result( conn, op, LDAP_UNWILLING_TO_PERFORM, - NULL, "Unwilling to perform", NULL, NULL ); + NULL, "Operation not allowed", NULL, NULL ); return( -1 ); case REWRITE_REGEXEC_ERR: send_ldap_result( conn, op, LDAP_OTHER, - NULL, "Operations error", NULL, NULL ); + NULL, "Rewrite error", NULL, NULL ); return( -1 ); } #else /* !ENABLE_REWRITE */ @@ -118,7 +118,8 @@ ldap_back_modify( continue; } - ldap_back_map(&li->at_map, &ml->sml_desc->ad_cname, &mapped, 0); + ldap_back_map(&li->at_map, &ml->sml_desc->ad_cname, &mapped, + BACKLDAP_MAP); if (mapped.bv_val == NULL) { continue; } @@ -139,13 +140,18 @@ ldap_back_modify( ml->sml_bvalues, conn ); } #endif /* ENABLE_REWRITE */ - - for (j = 0; ml->sml_bvalues[j].bv_val; j++); - mods[i].mod_bvalues = (struct berval **)ch_malloc((j+1) * - sizeof(struct berval *)); - for (j = 0; ml->sml_bvalues[j].bv_val; j++) - mods[i].mod_bvalues[j] = &ml->sml_bvalues[j]; - mods[i].mod_bvalues[j] = NULL; + + if ( ml->sml_bvalues != NULL ) { + for (j = 0; ml->sml_bvalues[j].bv_val; j++); + mods[i].mod_bvalues = (struct berval **)ch_malloc((j+1) * + sizeof(struct berval *)); + for (j = 0; ml->sml_bvalues[j].bv_val; j++) + mods[i].mod_bvalues[j] = &ml->sml_bvalues[j]; + mods[i].mod_bvalues[j] = NULL; + } else { + mods[i].mod_bvalues = NULL; + } + i++; } modv[i] = 0;