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
1a4e7861
...
1a4e7861a1c2ddd9119b63ad12a8b1c87c1d127b
authored
2007-02-13 10:44:27 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(compose_destroy): Do not free outfiles[i], the caller is responsible for that.
1 parent
b3f65f77
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
7 deletions
mail/send.c
mail/send.c
View file @
1a4e786
...
...
@@ -298,13 +298,7 @@ void
compose_destroy
(
compose_env_t
*
env
)
{
mu_header_destroy
(
&
env
->
header
,
NULL
);
if
(
env
->
outfiles
)
{
int
i
;
for
(
i
=
0
;
i
<
env
->
nfiles
;
i
++
)
free
(
env
->
outfiles
[
i
]);
free
(
env
->
outfiles
);
}
free
(
env
->
outfiles
);
}
static
int
...
...
Please
register
or
sign in
to post a comment