2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-29 13:28:10 +00:00

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);
}
;