X-Git-Url: http://git.ozlabs.org/?a=blobdiff_plain;f=ccan%2Fopt%2Ftest%2Frun-usage.c;h=fa1dc64c112fe46dc36e02cc4b140de50681372c;hb=2bba2a856a6cfdb93085b701557850bc1da99587;hp=37e8993fe8bde451bdbf713ba65c222e2b623171;hpb=b61b4b2f2c257b6e776772794969ee8526e132a8;p=ccan diff --git a/ccan/opt/test/run-usage.c b/ccan/opt/test/run-usage.c index 37e8993f..fa1dc64c 100644 --- a/ccan/opt/test/run-usage.c +++ b/ccan/opt/test/run-usage.c @@ -1,4 +1,3 @@ -#define _GNU_SOURCE #include #include #include @@ -15,13 +14,6 @@ static char *my_cb(void *p) return NULL; } -static void reset_options(void) -{ - free(opt_table); - opt_table = NULL; - opt_count = opt_num_short = opt_num_short_arg = opt_num_long = 0; -} - /* Test helpers. */ int main(int argc, char *argv[]) { @@ -107,5 +99,7 @@ int main(int argc, char *argv[]) ok1(strstr(output, "AAAAll")); free(output); + free(shortname); + free(longname); return exit_status(); }