summaryrefslogtreecommitdiff
path: root/blob.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-04-04 13:43:00 -0700
committerJunio C Hamano <junkio@cox.net>2006-04-04 13:43:00 -0700
commit810e1523753553968aac827f57e0e24fc9af6546 (patch)
tree47ec02a8c4a16c1f04e79e10a9b47cbcdfe4f564 /blob.c
parent4c61b7d15a6215fa4dffa33c37c3ef9df80d3f67 (diff)
parent90321c106ca6e36c0e884ca677c9a52dea47bdde (diff)
downloadgit-810e1523753553968aac827f57e0e24fc9af6546.tar.gz
Merge branch 'pe/cleanup'
* pe/cleanup: Replace xmalloc+memset(0) with xcalloc. Use blob_, commit_, tag_, and tree_type throughout.
Diffstat (limited to 'blob.c')
-rw-r--r--blob.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/blob.c b/blob.c
index 84ec1212e7..c1fdd861c3 100644
--- a/blob.c
+++ b/blob.c
@@ -8,8 +8,7 @@ struct blob *lookup_blob(const unsigned char *sha1)
{
struct object *obj = lookup_object(sha1);
if (!obj) {
- struct blob *ret = xmalloc(sizeof(struct blob));
- memset(ret, 0, sizeof(struct blob));
+ struct blob *ret = xcalloc(1, sizeof(struct blob));
created_object(sha1, &ret->object);
ret->object.type = blob_type;
return ret;