--- imapfilter/account.c 2004/02/13 12:17:15 1.9 +++ imapfilter/account.c 2004/02/13 13:18:37 1.10 @@ -38,6 +38,7 @@ void init_account(account_t * a) { + a->next = NULL; a->key[0] = '\0'; a->server[0] = '\0'; @@ -155,6 +156,7 @@ void init_mboxgrp(mboxgrp_t * g) { + g->left = g->right = NULL; g->key[0] = '\0'; g->mboxes[0] = NULL; @@ -224,6 +226,7 @@ void init_mbox(mbox_t * m) { + m->next = NULL; m->name[0] = '\0'; m->filters[0] = NULL;