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
4002d895
...
4002d895b95cc5f1dab7d23420d97655b4d216c9
authored
2004-01-04 17:06:45 +0000
by
Wojciech Polak
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(mail_send): Bugfix. Removed free(p) and prevent from later segmentation
fault.
1 parent
bc0e6d23
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
mail/send.c
mail/send.c
View file @
4002d89
/* GNU Mailutils -- a suite of utilities for electronic mail
Copyright (C) 1999, 2001, 2002 Free Software Foundation, Inc.
Copyright (C) 1999, 2001, 2002
, 2003, 2004
Free Software Foundation, Inc.
GNU Mailutils is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
...
...
@@ -189,10 +189,7 @@ mail_send (int argc, char **argv)
}
}
else
{
compose_header_set
(
&
env
,
MU_HEADER_TO
,
p
,
COMPOSE_SINGLE_LINE
);
free
(
p
);
}
compose_header_set
(
&
env
,
MU_HEADER_TO
,
p
,
COMPOSE_SINGLE_LINE
);
}
}
...
...
Please
register
or
sign in
to post a comment