diff options
author | Junio C Hamano <gitster@pobox.com> | 2014-07-21 12:35:39 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-07-21 12:35:39 -0700 |
commit | 9ab08822556c49a7856dadd0e9a42f9ec2aaf850 (patch) | |
tree | f52f20367d13f2078fe6199e230322c899b9308d /path.c | |
parent | 0eff86e4f440fedf26f02f4c3b1a3ead8bfbe6f8 (diff) | |
parent | 5c0b13f85ab3a5326508b854768eb70c8829cda4 (diff) | |
download | git-9ab08822556c49a7856dadd0e9a42f9ec2aaf850.tar.gz |
Merge branch 'maint'
* maint:
use xmemdupz() to allocate copies of strings given by start and length
use xcalloc() to allocate zero-initialized memory
Diffstat (limited to 'path.c')
-rw-r--r-- | path.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -249,9 +249,7 @@ int validate_headref(const char *path) static struct passwd *getpw_str(const char *username, size_t len) { struct passwd *pw; - char *username_z = xmalloc(len + 1); - memcpy(username_z, username, len); - username_z[len] = '\0'; + char *username_z = xmemdupz(username, len); pw = getpwnam(username_z); free(username_z); return pw; |