Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
3130b930
...
3130b930db2a27cde6e42842666f1cccb22a13ab
authored
2003-09-05 09:05:56 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(main): Bugfix. Lists were not initialized.
1 parent
0d2fa993
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
mh/ali.c
mh/ali.c
View file @
3130b93
...
...
@@ -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
)
{
...
...
Please
register
or
sign in
to post a comment