Commit 3da0edd1 3da0edd1626d8dd4da6623839e0af7ff0ba3b466 by Sergey Poznyakoff

(sieve_action_stop); Restored zero assignment to pc. This is possible due to the…

… changes to runtime.c
1 parent 1e7f70ff
...@@ -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
......