X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=ls-tree.c;h=4231c4b234d8c8a5a35adb3d15ad9cd1f7dcf51a;hb=127cfd0d2f1db6ef690e01aafd1c660ea1c82499;hp=d2ab02e3484efaf851c50574e603c785d713bc87;hpb=40469ee9c6a6f4c85df5520ef719bba3d38a64f0;p=git.git diff --git a/ls-tree.c b/ls-tree.c index d2ab02e3..4231c4b2 100644 --- a/ls-tree.c +++ b/ls-tree.c @@ -77,6 +77,7 @@ static int list(unsigned char *sha1) if (!buffer) die("unable to read sha1 file"); list_recursive(buffer, "tree", size, NULL); + free(buffer); return 0; } @@ -102,11 +103,8 @@ int main(int argc, char **argv) if (argc != 2) usage(ls_tree_usage); - if (get_sha1_hex(argv[1], sha1) < 0) + if (get_sha1(argv[1], sha1) < 0) usage(ls_tree_usage); - sha1_file_directory = getenv(DB_ENVIRONMENT); - if (!sha1_file_directory) - sha1_file_directory = DEFAULT_DB_ENVIRONMENT; if (list(sha1) < 0) die("list failed"); return 0;