X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=tag.c;h=f390ee703036bc74d6447d7e96c828310a948c2b;hb=7612a1efdb0c0806b43db10ce784707aae874340;hp=61ac434d6b6330e24900beab29c924ccffb886c1;hpb=4a4e6fd74f7d4564ed43eaaf59b6bd70c1959f1a;p=git.git 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;