diff options
author | René Scharfe <l.s.r@web.de> | 2014-07-19 17:35:34 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-07-21 10:37:02 -0700 |
commit | 5c0b13f85ab3a5326508b854768eb70c8829cda4 (patch) | |
tree | c498179a86e3e05abb664caa8d943c81ae4142f5 /http-backend.c | |
parent | 51a60f5bfbaf1ee7c7a2d2b73eca4f042f7af8cb (diff) | |
download | git-5c0b13f85ab3a5326508b854768eb70c8829cda4.tar.gz |
use xmemdupz() to allocate copies of strings given by start and length
Use xmemdupz() to allocate the memory, copy the data and make sure to
NUL-terminate the result, all in one step. The resulting code is
shorter, doesn't contain the constants 1 and '\0', and avoids
duplicating function parameters.
For blame, the last copied byte (o->file.ptr[o->file.size]) is always
set to NUL by fake_working_tree_commit() or read_sha1_file(), so no
information is lost by the conversion to using xmemdupz().
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http-backend.c')
-rw-r--r-- | http-backend.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/http-backend.c b/http-backend.c index d2c0a625ce..f6b7a5bae1 100644 --- a/http-backend.c +++ b/http-backend.c @@ -607,9 +607,7 @@ int main(int argc, char **argv) cmd = c; n = out[0].rm_eo - out[0].rm_so; - cmd_arg = xmalloc(n); - memcpy(cmd_arg, dir + out[0].rm_so + 1, n-1); - cmd_arg[n-1] = '\0'; + cmd_arg = xmemdupz(dir + out[0].rm_so + 1, n - 1); dir[out[0].rm_so] = 0; break; } |