X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=show-index.c;h=4c0ac138aff7b5add73e17fc9c3c4e409fd918e2;hb=79286102ce1620c5b0e73dc4559450eb24918e08;hp=45bb535773fd9c36f73502df9462f7de800009c8;hpb=ed56049058284d7df2ede1ce5f494a2a9a109479;p=git.git diff --git a/show-index.c b/show-index.c index 45bb53577..4c0ac138a 100644 --- a/show-index.c +++ b/show-index.c @@ -1,6 +1,9 @@ #include "cache.h" #include "pack.h" +static const char show_index_usage[] = +"git show-index < "; + int main(int argc, char **argv) { int i; @@ -8,6 +11,8 @@ int main(int argc, char **argv) unsigned int version; static unsigned int top_index[256]; + if (argc != 1) + usage(show_index_usage); if (fread(top_index, 2 * 4, 1, stdin) != 1) die("unable to read header"); if (top_index[0] == htonl(PACK_IDX_SIGNATURE)) { @@ -43,7 +48,7 @@ int main(int argc, char **argv) unsigned char sha1[20]; uint32_t crc; uint32_t off; - } *entries = xmalloc(nr * sizeof(entries[0])); + } *entries = malloc(nr * sizeof(entries[0])); for (i = 0; i < nr; i++) if (fread(entries[i].sha1, 20, 1, stdin) != 1) die("unable to read sha1 %u/%u", i, nr);