Sorry, it should have been:
sequence:
{ $$ = ...; }
| sequence token { $$ = ...; free($2); }
That is, as $2 was allocated, it needs to be freed.Hans _______________________________________________ [email protected] http://lists.gnu.org/mailman/listinfo/help-bison
