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
551ae806
...
551ae8068f4a605f81537753ebd26120b51787e0
authored
2002-12-09 13:25:04 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(_comp_action): Do not run comparator if the sample is NULL.
1 parent
e61d9ea0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
libsieve/util.c
libsieve/util.c
View file @
551ae80
...
...
@@ -474,10 +474,11 @@ _comp_action (void *item, void *data)
d
.
comp
=
cp
->
comp
;
for
(
i
=
0
;
cp
->
retr
(
item
,
cp
->
data
,
i
,
&
d
.
sample
)
==
0
;
i
++
)
{
rc
=
sieve_vlist_do
(
cp
->
val
,
_comp_action2
,
&
d
);
free
(
d
.
sample
);
}
if
(
d
.
sample
)
{
rc
=
sieve_vlist_do
(
cp
->
val
,
_comp_action2
,
&
d
);
free
(
d
.
sample
);
}
return
rc
;
}
...
...
Please
register
or
sign in
to post a comment