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
86b703f8
...
86b703f84604ca7ae64b5400fb68eee250325a2d
authored
2005-09-29 11:52:28 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(vacation_reply): Call mu_mime_destroy
1 parent
0f47af51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
libsieve/extensions/vacation.c
libsieve/extensions/vacation.c
View file @
86b703f
...
...
@@ -526,9 +526,12 @@ vacation_reply (mu_sieve_machine_t mach, mu_list_t tags, mu_message_t msg,
mu_url_to_string
(
url
),
mu_strerror
(
rc
));
return
-
1
;
}
rc
=
mu_mailer_send_message
(
mailer
,
newmsg
,
from_addr
,
to_addr
);
mu_mailer_close
(
mailer
);
else
{
rc
=
mu_mailer_send_message
(
mailer
,
newmsg
,
from_addr
,
to_addr
);
mu_mailer_close
(
mailer
);
}
mu_mime_destroy
(
&
mime
);
return
rc
;
}
...
...
Please
register
or
sign in
to post a comment