(sieve_action_stop); Restored zero assignment to pc. This is possible due to the…
… changes to runtime.c
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -29,7 +29,7 @@ int | ... | @@ -29,7 +29,7 @@ int |
29 | sieve_action_stop (sieve_machine_t mach, list_t args, list_t tags) | 29 | sieve_action_stop (sieve_machine_t mach, list_t args, list_t tags) |
30 | { | 30 | { |
31 | sieve_log_action (mach, "STOP", NULL); | 31 | sieve_log_action (mach, "STOP", NULL); |
32 | mach->pc = (size_t) -4; | 32 | mach->pc = 0; |
33 | return 0; | 33 | return 0; |
34 | } | 34 | } |
35 | 35 | ... | ... |
-
Please register or sign in to post a comment