ITS#5979 don't create reqOld attr if there was no previous value

This commit is contained in:
Howard Chu 2009-02-28 04:43:40 +00:00
parent 1f5937f993
commit 8597332057

View File

@ -1551,6 +1551,7 @@ static int accesslog_response(Operation *op, SlapReply *rs) {
i += a->a_numvals;
}
}
if ( i ) {
vals = ch_malloc( (i + 1) * sizeof( struct berval ) );
i = 0;
for ( a=old->e_attrs; a; a=a->a_next ) {
@ -1568,6 +1569,7 @@ static int accesslog_response(Operation *op, SlapReply *rs) {
a->a_nvals = vals;
last_attr->a_next = a;
}
}
if ( logop == LOG_EN_MODIFY ) {
break;
}