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
c51eabe5
...
c51eabe502d7f1bb6f017dde2a4a0441298e3885
authored
2002-11-30 13:40:58 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(sieve_machine_init): Fixed inconsistent return value.
1 parent
00ec258e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
libsieve/sieve.y
libsieve/sieve.y
View file @
c51eabe
...
...
@@ -351,7 +351,7 @@ sieve_machine_init (sieve_machine_t *pmach, void *data)
if (rc)
{
free (mach);
return
1
;
return
rc
;
}
mach->data = data;
...
...
@@ -469,7 +469,7 @@ sieve_machine_add_destructor (sieve_machine_t mach, sieve_destructor_t destr,
return 1;
p->destr = destr;
p->ptr = ptr;
return list_
ap
pend (mach->destr_list, p);
return list_
pre
pend (mach->destr_list, p);
}
static int
...
...
Please
register
or
sign in
to post a comment