X-Git-Url: https://git.octo.it/?p=git.git;a=blobdiff_plain;f=tag.c;h=f390ee703036bc74d6447d7e96c828310a948c2b;hp=61ac434d6b6330e24900beab29c924ccffb886c1;hb=162f41292167a800432fc6bbacfcd9f93a90b0c8;hpb=069b20a198f171512a1d2d2163b40f70c94f5257 diff --git a/tag.c b/tag.c index 61ac434d..f390ee70 100644 --- a/tag.c +++ b/tag.c @@ -1,5 +1,5 @@ -#include "tag.h" #include "cache.h" +#include "tag.h" const char *tag_type = "tag"; @@ -19,8 +19,7 @@ struct tag *lookup_tag(const unsigned char *sha1) { struct object *obj = lookup_object(sha1); if (!obj) { - struct tag *ret = xmalloc(sizeof(struct tag)); - memset(ret, 0, sizeof(struct tag)); + struct tag *ret = xcalloc(1, sizeof(struct tag)); created_object(sha1, &ret->object); ret->object.type = tag_type; return ret;