diff options
Diffstat (limited to 'help.c')
-rw-r--r-- | help.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |