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
1e7f70ff
...
1e7f70ff3e97a1cb94f35c2b93f7373d16f5eb21
authored
2004-01-05 18:10:18 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
(instr_run): Adjust pc before calling handler.
1 parent
b53eb75c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletions
libsieve/runtime.c
libsieve/runtime.c
View file @
1e7f70f
...
...
@@ -69,6 +69,8 @@ instr_run (sieve_machine_t mach)
list_t
tag_list
=
SIEVE_ARG
(
mach
,
2
,
list
);
int
rc
=
0
;
SIEVE_ADJUST
(
mach
,
4
);
if
(
INSTR_DEBUG
(
mach
))
{
sieve_debug
(
mach
,
"Arguments: "
);
...
...
@@ -80,7 +82,6 @@ instr_run (sieve_machine_t mach)
if
(
!
INSTR_DISASS
(
mach
))
rc
=
han
(
mach
,
arg_list
,
tag_list
);
SIEVE_ADJUST
(
mach
,
4
);
return
rc
;
}
...
...
Please
register
or
sign in
to post a comment