Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/bin/expr/expr.y,v rcsdiff: /ftp/cvs/cvsroot/src/bin/expr/expr.y,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.13 retrieving revision 1.14 diff -u -p -r1.13 -r1.14 --- src/bin/expr/expr.y 1993/10/04 21:57:27 1.13 +++ src/bin/expr/expr.y 1993/11/16 23:08:49 1.14 @@ -56,7 +56,6 @@ char **av; %left '+' '-' %left '*' '/' '%' %left ':' -%left UNARY %token TOKEN %type start expr @@ -124,6 +123,7 @@ struct val *vp; { if (vp->type == string) free (vp->u.s); + free (vp); }