diff options
Diffstat (limited to 'p11-kit/p11-kit.c')
-rw-r--r-- | p11-kit/p11-kit.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/p11-kit/p11-kit.c b/p11-kit/p11-kit.c index 28c6f4a..34b9476 100644 --- a/p11-kit/p11-kit.c +++ b/p11-kit/p11-kit.c @@ -84,6 +84,9 @@ p11_kit_external (int argc, /* At this point we have no command */ p11_message ("'%s' is not a valid command. See 'p11-kit --help'", argv[0]); + + free (filename); + free (path); return 2; } @@ -109,6 +112,9 @@ p11_kit_extract (int argc, /* At this point we have no command */ p11_message ("'%s' is not a valid command. See 'p11-kit --help'", argv[0]); + + free (path); + free (args); return 2; } |