The local List_Config variable was potentially used uninitialized.

Fixed that.
This commit is contained in:
Peter Simons 2001-01-06 10:11:58 +00:00
parent fe3947876e
commit f1f7dcefda

View File

@ -27,7 +27,7 @@ int
handleACL(struct Mail * MailStruct, const char * listname, int operation, char * parameter)
{
const struct PD_Config * MasterConfig;
const struct List_Config * ListConfig;
const struct List_Config * ListConfig = NULL;
FILE * fh;
char * buffer;
char envelope[1024];