Check-in Number:
|
248 | |
Date: |
2001-Jan-06 11:11:58 (local)
2001-Jan-06 10:11:58 (UTC) |
User: | simons |
Branch: | |
Comment: |
The local List_Config variable was potentially used uninitialized.
Fixed that. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/petidomo/handleacl.c 1.3 -> 1.4
--- handleacl.c 2000/12/15 15:48:00 1.3
+++ handleacl.c 2001/01/06 10:11:58 1.4
@@ -1,6 +1,6 @@
/*
$Source: /v/ossp/cvs/ossp-pkg/petidomo/handleacl.c,v $
- $Revision: 1.3 $
+ $Revision: 1.4 $
Copyright (C) 2000 by CyberSolutions GmbH, Germany.
@@ -27,7 +27,7 @@
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];
|
|