summaryrefslogtreecommitdiff
path: root/compat
diff options
context:
space:
mode:
authorRené Scharfe <l.s.r@web.de>2014-07-19 13:56:26 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-07-21 17:30:21 (GMT)
commit51a60f5bfbaf1ee7c7a2d2b73eca4f042f7af8cb (patch)
tree8a5a3866741eca992c4555687305c9246fe20eea /compat
parentebc5da3208824e25a89672a3b91bd13629b215fe (diff)
downloadgit-51a60f5bfbaf1ee7c7a2d2b73eca4f042f7af8cb.zip
git-51a60f5bfbaf1ee7c7a2d2b73eca4f042f7af8cb.tar.gz
git-51a60f5bfbaf1ee7c7a2d2b73eca4f042f7af8cb.tar.bz2
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 'compat')
-rw-r--r--compat/mingw.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/compat/mingw.c b/compat/mingw.c
index e9892f8..363a957 100644
--- a/compat/mingw.c
+++ b/compat/mingw.c
@@ -1226,8 +1226,7 @@ static int WSAAPI getaddrinfo_stub(const char *node, const char *service,
else
ai->ai_canonname = NULL;
- sin = xmalloc(ai->ai_addrlen);
- memset(sin, 0, ai->ai_addrlen);
+ sin = xcalloc(1, ai->ai_addrlen);
sin->sin_family = AF_INET;
/* Note: getaddrinfo is supposed to allow service to be a string,
* which should be looked up using getservbyname. This is