mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-29 12:24:11 +00:00
calloc() to initialize memory
This commit is contained in:
parent
12f831fa15
commit
7026ad893b
@ -259,7 +259,7 @@ static int store_object(git_indexer_stream *idx)
|
||||
entry = git__calloc(1, sizeof(*entry));
|
||||
GITERR_CHECK_ALLOC(entry);
|
||||
|
||||
pentry = git__malloc(sizeof(struct git_pack_entry));
|
||||
pentry = git__calloc(1, sizeof(struct git_pack_entry));
|
||||
GITERR_CHECK_ALLOC(pentry);
|
||||
|
||||
git_hash_final(&oid, ctx);
|
||||
@ -328,7 +328,7 @@ static int hash_and_save(git_indexer_stream *idx, git_rawobj *obj, git_off_t ent
|
||||
return -1;
|
||||
}
|
||||
|
||||
pentry = git__malloc(sizeof(struct git_pack_entry));
|
||||
pentry = git__calloc(1, sizeof(struct git_pack_entry));
|
||||
GITERR_CHECK_ALLOC(pentry);
|
||||
|
||||
git_oid_cpy(&pentry->sha1, &oid);
|
||||
|
@ -576,7 +576,7 @@ static int add_push_report_pkt(git_push *push, git_pkt *pkt)
|
||||
|
||||
switch (pkt->type) {
|
||||
case GIT_PKT_OK:
|
||||
status = git__malloc(sizeof(push_status));
|
||||
status = git__calloc(1, sizeof(push_status));
|
||||
GITERR_CHECK_ALLOC(status);
|
||||
status->msg = NULL;
|
||||
status->ref = git__strdup(((git_pkt_ok *)pkt)->ref);
|
||||
|
@ -32,7 +32,7 @@ git__DIR *git__opendir(const char *dir)
|
||||
if (!dir || !init_filter(filter, sizeof(filter), dir))
|
||||
return NULL;
|
||||
|
||||
new = git__malloc(sizeof(*new));
|
||||
new = git__calloc(1, sizeof(*new));
|
||||
if (!new)
|
||||
return NULL;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user