X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=ls-tree.c;h=4231c4b234d8c8a5a35adb3d15ad9cd1f7dcf51a;hb=127cfd0d2f1db6ef690e01aafd1c660ea1c82499;hp=339ac36a4cad45acd5d6769bed6c8b01c5da453a;hpb=3c249c950649a37f2871a8b193f01a0640a20aef;p=git.git diff --git a/ls-tree.c b/ls-tree.c index 339ac36a..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; } @@ -104,9 +105,6 @@ int main(int argc, char **argv) usage(ls_tree_usage); 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;