Merge branch 'sk/calloc-not-malloc-plus-memset'
Code clean-up. * sk/calloc-not-malloc-plus-memset: git: use calloc instead of malloc + memset where possible
This commit is contained in:
10
submodule.c
10
submodule.c
@ -1490,14 +1490,13 @@ struct fetch_task {
|
||||
*/
|
||||
static const struct submodule *get_non_gitmodules_submodule(const char *path)
|
||||
{
|
||||
struct submodule *ret = NULL;
|
||||
struct submodule *ret;
|
||||
const char *name = default_name_or_path(path);
|
||||
|
||||
if (!name)
|
||||
return NULL;
|
||||
|
||||
ret = xmalloc(sizeof(*ret));
|
||||
memset(ret, 0, sizeof(*ret));
|
||||
CALLOC_ARRAY(ret, 1);
|
||||
ret->path = name;
|
||||
ret->name = name;
|
||||
|
||||
@ -1537,8 +1536,9 @@ static struct fetch_task *fetch_task_create(struct submodule_parallel_fetch *spf
|
||||
const char *path,
|
||||
const struct object_id *treeish_name)
|
||||
{
|
||||
struct fetch_task *task = xmalloc(sizeof(*task));
|
||||
memset(task, 0, sizeof(*task));
|
||||
struct fetch_task *task;
|
||||
|
||||
CALLOC_ARRAY(task, 1);
|
||||
|
||||
if (validate_submodule_path(path) < 0)
|
||||
exit(128);
|
||||
|
Reference in New Issue
Block a user