Fix uninit'd *cb (Coverity scan)

This commit is contained in:
Howard Chu 2006-09-09 22:15:45 +00:00
parent 0e13519191
commit c6ed29dc3c

View file

@ -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;