mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 17:49:59 -05:00
Fix uninit'd cb (coverity)
This commit is contained in:
parent
e16058d857
commit
acdddee3ab
1 changed files with 1 additions and 1 deletions
|
|
@ -385,7 +385,7 @@ ldap_back_monitor_db_open( BackendDB *be )
|
|||
ldapinfo_t *li = (ldapinfo_t *) be->be_private;
|
||||
char buf[ BACKMONITOR_BUFSIZE ];
|
||||
Entry *e = NULL;
|
||||
monitor_callback_t *cb;
|
||||
monitor_callback_t *cb = NULL;
|
||||
struct berval suffix, *filter, *base;
|
||||
char *ptr;
|
||||
time_t now;
|
||||
|
|
|
|||
Loading…
Reference in a new issue