X-Git-Url: https://git.tokkee.org/?a=blobdiff_plain;f=help.c;h=6a9af4d175f2fe9724a2844df63e4011ba91f1b3;hb=7da3bf372cfcd25ea44164afb90c306836b62e23;hp=0893fea0254f4ec8acbce82a0af41e4e61bd72a6;hpb=8ab3e1858676b91bf351537b8afd5599c6640e6f;p=git.git diff --git a/help.c b/help.c index 0893fea02..6a9af4d17 100644 --- a/help.c +++ b/help.c @@ -31,12 +31,6 @@ static int term_columns(void) return 80; } -static void oom(void) -{ - fprintf(stderr, "git: out of memory\n"); - exit(1); -} - static inline void mput_char(char c, unsigned int num) { while(num--) @@ -54,13 +48,9 @@ static void add_cmdname(const char *name, int len) struct cmdname *ent; if (cmdname_alloc <= cmdname_cnt) { cmdname_alloc = cmdname_alloc + 200; - cmdname = realloc(cmdname, cmdname_alloc * sizeof(*cmdname)); - if (!cmdname) - oom(); + cmdname = xrealloc(cmdname, cmdname_alloc * sizeof(*cmdname)); } - ent = malloc(sizeof(*ent) + len); - if (!ent) - oom(); + ent = xmalloc(sizeof(*ent) + len); ent->len = len; memcpy(ent->name, name, len); ent->name[len] = 0;