aboutsummaryrefslogtreecommitdiff
path: root/pathspec.c
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2014-07-19 15:56:26 +0200
committerJunio C Hamano <gitster@pobox.com>2014-07-21 10:30:21 -0700
commit51a60f5bfbaf1ee7c7a2d2b73eca4f042f7af8cb (patch)
tree8a5a3866741eca992c4555687305c9246fe20eea /pathspec.c
parentebc5da3208824e25a89672a3b91bd13629b215fe (diff)
downloadgit-51a60f5bfbaf1ee7c7a2d2b73eca4f042f7af8cb.tar.gz
git-51a60f5bfbaf1ee7c7a2d2b73eca4f042f7af8cb.tar.xz
use xcalloc() to allocate zero-initialized memory
Use xcalloc() instead of xmalloc() followed by memset() to allocate and zero out memory because it's shorter and avoids duplicating the function parameters. Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'pathspec.c')
-rw-r--r--pathspec.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/pathspec.c b/pathspec.c
index 804309995..0be5edbd1 100644
--- a/pathspec.c
+++ b/pathspec.c
@@ -389,8 +389,7 @@ void parse_pathspec(struct pathspec *pathspec,
if (!(flags & PATHSPEC_PREFER_CWD))
die("BUG: PATHSPEC_PREFER_CWD requires arguments");
- pathspec->items = item = xmalloc(sizeof(*item));
- memset(item, 0, sizeof(*item));
+ pathspec->items = item = xcalloc(1, sizeof(*item));
item->match = prefix;
item->original = prefix;
item->nowildcard_len = item->len = strlen(prefix);