Skip to content
Snippets Groups Projects
Commit 1cc6b2eb authored by Pierangelo Masarati's avatar Pierangelo Masarati
Browse files

don't use temporaries

parent 6c65ad09
Branches
Tags
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment