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
9b12712c
...
9b12712c43833fe8678e78f0fad9299e61048530
authored
2002-11-22 14:54:21 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(main): Removed unneded goto. Added call to sieve_machine_destroy at the end.
1 parent
7ba0b591
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
4 deletions
sieve/sieve.c
sieve/sieve.c
View file @
9b12712
...
...
@@ -447,10 +447,6 @@ main (int argc, char *argv[])
/* Process the mailbox */
rc
=
sieve_mailbox
(
mach
,
mbox
);
if
(
rc
)
{
goto
cleanup
;
}
cleanup:
if
(
mbox
&&
!
(
opts
.
sieve_debug
&
MU_SIEVE_DRY_RUN
))
...
...
@@ -469,6 +465,7 @@ cleanup:
rc
=
e
;
}
sieve_machine_destroy
(
&
mach
);
mailbox_close
(
mbox
);
mailbox_destroy
(
&
mbox
);
mu_debug_destroy
(
&
debug
,
mach
);
...
...
Please
register
or
sign in
to post a comment