diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-01-28 10:39:12 -0500 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2020-01-28 10:39:12 -0500 |
commit | 8b06e3e66a4cf26c02f9e0175263e1a561186c1b (patch) | |
tree | 8bac5ec5215066ef1fdff4edfd06857324b40f91 /src/internal_cmd.c | |
parent | 38ef2cc6dff14f37050ea40ae62e4aea9863c805 (diff) | |
download | spmc-8b06e3e66a4cf26c02f9e0175263e1a561186c1b.tar.gz |
Remove md5sum function
* Fix a few glaring memory leaks
Diffstat (limited to 'src/internal_cmd.c')
-rw-r--r-- | src/internal_cmd.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/internal_cmd.c b/src/internal_cmd.c index 530d008..bcd0231 100644 --- a/src/internal_cmd.c +++ b/src/internal_cmd.c @@ -86,7 +86,7 @@ int mkprefix_interface(int argc, char **argv) { * */ void mkmanifest_interface_usage(void) { - printf("usage: mkmanifest [package_dir] [output_dir]"); + printf("usage: mkmanifest [package_dir] [output_dir]\n"); } /** @@ -158,6 +158,7 @@ int mirror_clone_interface(int argc, char **argv) { } mirror_clone(manifest, path); + manifest_free(manifest); return 0; } /** |