summaryrefslogtreecommitdiff
path: root/mh
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2003-09-05 09:05:56 +0000
committerSergey Poznyakoff <gray@gnu.org.ua>2003-09-05 09:05:56 +0000
commit3130b930db2a27cde6e42842666f1cccb22a13ab (patch)
tree12e9e1e18443834b37b8c3a5d75d6f4581a94e90 /mh
parent0d2fa99324d1364f4375ad25062ce189e3b32109 (diff)
downloadmailutils-3130b930db2a27cde6e42842666f1cccb22a13ab.tar.gz
mailutils-3130b930db2a27cde6e42842666f1cccb22a13ab.tar.bz2
(main): Bugfix. Lists were not initialized.
Diffstat (limited to 'mh')
-rw-r--r--mh/ali.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mh/ali.c b/mh/ali.c
index 733e0613b..79eda9bcd 100644
--- a/mh/ali.c
+++ b/mh/ali.c
@@ -215,7 +215,7 @@ main (int argc, char **argv)
int i;
for (i = 0; i < argc; i++)
{
- list_t al;
+ list_t al = NULL;
if (mh_alias_get (argv[i], &al) == 0)
{
@@ -239,7 +239,7 @@ main (int argc, char **argv)
int i;
for (i = 0; i < argc; i++)
{
- list_t nl;
+ list_t nl = NULL;
if (mh_alias_get_alias (argv[i], &nl) == 0)
{

Return to:

Send suggestions and report system problems to the System administrator.