mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Fix uninit'd var
This commit is contained in:
parent
0109f871bf
commit
28f0f11c6c
1 changed files with 1 additions and 1 deletions
|
|
@ -972,7 +972,7 @@ log_cf_gen(ConfigArgs *c)
|
|||
}
|
||||
break;
|
||||
case LOG_BASE: {
|
||||
slap_mask_t m;
|
||||
slap_mask_t m = 0;
|
||||
rc = verbstring_to_mask( logops, c->argv[1], '|', &m );
|
||||
if ( rc == 0 ) {
|
||||
struct berval dn, ndn;
|
||||
|
|
|
|||
Loading…
Reference in a new issue