Commit 618c1e17 618c1e179559e80b52884eb3dbec9101b3196f17 by Sergey Poznyakoff

Bugfix in sieve library

* libmu_sieve/sieve-gram.y: Add missing assignment to $$ in testlist
production.  This fixes improper handling of anyof and allof
1 parent 33dff02c
...@@ -180,6 +180,7 @@ testlist : cond ...@@ -180,6 +180,7 @@ testlist : cond
180 $3->prev = $1.tail; 180 $3->prev = $1.tail;
181 $1.tail->next = $3; 181 $1.tail->next = $3;
182 $1.tail = $3; 182 $1.tail = $3;
183 $$ = $1;
183 } 184 }
184 ; 185 ;
185 186
......