mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 01:29:59 -05:00
don't use temporaries
This commit is contained in:
parent
6c65ad09b0
commit
1cc6b2ebe2
1 changed files with 6 additions and 1 deletions
|
|
@ -157,13 +157,14 @@ rwm_dn_massage(
|
|||
{
|
||||
int rc = 0;
|
||||
struct berval mdn;
|
||||
static char *dmy = "";
|
||||
|
||||
assert( dc );
|
||||
assert( in );
|
||||
assert( dn );
|
||||
|
||||
rc = rewrite_session( dc->rwmap->rwm_rw, dc->ctx,
|
||||
( in->bv_len ? in->bv_val : "" ),
|
||||
( in->bv_val ? in->bv_val : dmy ),
|
||||
dc->conn, &mdn.bv_val );
|
||||
switch ( rc ) {
|
||||
case REWRITE_REGEXEC_OK:
|
||||
|
|
@ -197,6 +198,10 @@ rwm_dn_massage(
|
|||
break;
|
||||
}
|
||||
|
||||
if ( mdn.bv_val == dmy ) {
|
||||
BER_BVZERO( &mdn );
|
||||
}
|
||||
|
||||
return rc;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue