1
0
mirror of https://github.com/git/git synced 2024-07-07 19:39:27 +00:00

use xmalloc in git.c and help.c

Signed-off-by: James Bowes <jbowes@dangerouslyinc.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
James Bowes 2007-03-25 20:39:36 -04:00 committed by Junio C Hamano
parent 3a81b9f571
commit 3301521a25
2 changed files with 2 additions and 2 deletions

2
git.c
View File

@ -99,7 +99,7 @@ static int split_cmdline(char *cmdline, const char ***argv)
int src, dst, count = 0, size = 16;
char quoted = 0;
*argv = malloc(sizeof(char*) * size);
*argv = xmalloc(sizeof(char*) * size);
/* split alias_string */
(*argv)[count++] = cmdline;

2
help.c
View File

@ -58,7 +58,7 @@ static void add_cmdname(const char *name, int len)
if (!cmdname)
oom();
}
ent = malloc(sizeof(*ent) + len);
ent = xmalloc(sizeof(*ent) + len);
if (!ent)
oom();
ent->len = len;