diff options
author | Jeff King <peff@peff.net> | 2014-06-19 17:24:33 -0400 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-06-19 15:20:54 -0700 |
commit | 283101869bea8feb5d58f6ea1b568e9b197526d3 (patch) | |
tree | 3aba65688e4a5a11a3d0a60d2fa60930fd398898 /http-walker.c | |
parent | 95244ae3dd49b3eed4dbfe09299b9d8847622218 (diff) | |
download | git-283101869bea8feb5d58f6ea1b568e9b197526d3.tar.gz |
use xstrfmt to replace xmalloc + sprintf
This is one line shorter, and makes sure the length in the
malloc and sprintf steps match.
These conversions are very straightforward; we can drop the
malloc entirely, and replace the sprintf with xstrfmt.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'http-walker.c')
-rw-r--r-- | http-walker.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/http-walker.c b/http-walker.c index ab6a4febeb..dbddfaa177 100644 --- a/http-walker.c +++ b/http-walker.c @@ -341,8 +341,7 @@ static void fetch_alternates(struct walker *walker, const char *base) if (walker->get_verbosely) fprintf(stderr, "Getting alternates list for %s\n", base); - url = xmalloc(strlen(base) + 31); - sprintf(url, "%s/objects/info/http-alternates", base); + url = xstrfmt("%s/objects/info/http-alternates", base); /* * Use a callback to process the result, since another request |