Fix insignificant memory leak.

This commit is contained in:
jtc 1993-11-16 23:08:49 +00:00
parent e8214430ab
commit bff56be25a

View File

@ -56,7 +56,6 @@ char **av;
%left <val> '+' '-'
%left <val> '*' '/' '%'
%left <val> ':'
%left UNARY
%token <val> TOKEN
%type <val> start expr
@ -124,6 +123,7 @@ struct val *vp;
{
if (vp->type == string)
free (vp->u.s);
free (vp);
}