mirror of
https://git.openldap.org/openldap/openldap.git
synced 2024-12-21 03:10:25 +08:00
Trim unneeded tmp var
This commit is contained in:
parent
95993844dd
commit
60c0a68249
@ -2173,7 +2173,7 @@ integerIndexer(
|
||||
void *ctx )
|
||||
{
|
||||
char ibuf[64];
|
||||
struct berval iv, itmp;
|
||||
struct berval itmp;
|
||||
BerVarray keys;
|
||||
int i, rc;
|
||||
|
||||
@ -2204,8 +2204,7 @@ integerIndexer(
|
||||
itmp.bv_val = slap_sl_realloc( itmp.bv_val, itmp.bv_len, ctx );
|
||||
}
|
||||
}
|
||||
iv = itmp;
|
||||
rc = integerVal2Key( &values[i], &keys[i], &iv );
|
||||
rc = integerVal2Key( &values[i], &keys[i], &itmp );
|
||||
if ( rc )
|
||||
goto leave;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user