mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-02-12 15:23:11 -05:00
Fix uninit'd *cb (Coverity scan)
This commit is contained in:
parent
0e13519191
commit
c6ed29dc3c
1 changed files with 1 additions and 1 deletions
|
|
@ -343,7 +343,7 @@ bdb_monitor_open( BackendDB *be )
|
|||
{
|
||||
struct bdb_info *bdb = (struct bdb_info *) be->be_private;
|
||||
Attribute *a, *next;
|
||||
monitor_callback_t *cb;
|
||||
monitor_callback_t *cb = NULL;
|
||||
struct berval suffix, *filter, *base;
|
||||
char *ptr;
|
||||
int rc = 0;
|
||||
|
|
|
|||
Loading…
Reference in a new issue