added a missing free()

This commit is contained in:
Todd C. Miller
1996-05-28 04:00:32 +00:00
parent 2c1b963a21
commit 2ed1645b9c

View File

@@ -362,6 +362,7 @@ cmnd : ALL {
(void) free($1.cmnd);
for (t = $1.args; t && *t; t++)
(void) free(*t);
(void) free($1.args);
}
;