From: James Bowes Date: Tue, 27 Mar 2007 22:30:19 +0000 (-0400) Subject: read-tree: use xcalloc X-Git-Tag: v1.5.1-rc3~12 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=aa4cfa8516f33ccde36b6cadf3dab2ddefb972af;p=git.git read-tree: use xcalloc Signed-off-by: James Bowes Signed-off-by: Junio C Hamano --- diff --git a/builtin-read-tree.c b/builtin-read-tree.c index 82df94101..793eae0a5 100644 --- a/builtin-read-tree.c +++ b/builtin-read-tree.c @@ -184,7 +184,7 @@ int cmd_read_tree(int argc, const char **argv, const char *unused_prefix) if (opts.dir) die("more than one --exclude-per-directory are given."); - dir = calloc(1, sizeof(*opts.dir)); + dir = xcalloc(1, sizeof(*opts.dir)); dir->show_ignored = 1; dir->exclude_per_dir = arg + 24; opts.dir = dir;