diff options
author | Rob Landley <rob@landley.net> | 2012-07-15 17:22:04 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2012-07-15 17:22:04 -0500 |
commit | 9e2b6db36ab6486172fccd0e1786532826d58c53 (patch) | |
tree | 8027567bf76e073ad13594d634e0268de6f83e05 /lib/args.c | |
parent | 2037b8396427ab82edd1912357e9177a2800b01a (diff) | |
download | toybox-9e2b6db36ab6486172fccd0e1786532826d58c53.tar.gz |
Genericize llist code a bit: rename llist_free() to llist_traverse(), and no longer accept NULL as a synonym for free.
Diffstat (limited to 'lib/args.c')
-rw-r--r-- | lib/args.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -413,4 +413,9 @@ notflag: if (toys.optc>gof.maxargs) error_exit("Max %d argument%s", gof.maxargs, letters[!(gof.maxargs-1)]); if (CFG_HELP) toys.exithelp = 0; + + if (CFG_TOYBOX_FREE) { + llist_traverse(gof.opts, free); + llist_traverse(gof.longopts, free); + } } |