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
7040e703
...
7040e70383e8438e616eeff447aebea21975e376
authored
2001-11-12 13:16:08 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Bugfix: possible dereference of NULL pointer
1 parent
1f024db3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
mail/set.c
mail/set.c
View file @
7040e70
...
...
@@ -55,7 +55,7 @@ mail_set (int argc, char **argv)
if
(
entry
==
NULL
)
return
1
;
i
+=
2
;
if
(
i
>
argc
)
if
(
i
>
=
argc
)
break
;
value
=
strdup
(
argv
[
i
]);
entry
->
set
=
1
;
...
...
Please
register
or
sign in
to post a comment