mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-12 10:54:48 +08:00
Fix uninit (coverity)
This commit is contained in:
parent
acdddee3ab
commit
65f7c1a50d
@ -201,11 +201,11 @@ monitor_subsys_thread_update(
|
||||
|
||||
for ( i = 0; !BER_BVISNULL( &mt[ i ].nrdn ); i++ ) {
|
||||
if ( dn_match( &mt[ i ].nrdn, &rdn ) ) {
|
||||
which = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
which = i;
|
||||
if ( BER_BVISNULL( &mt[ which ].nrdn ) ) {
|
||||
return SLAP_CB_CONTINUE;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user