diff options
author | Bert Wesarg <bert.wesarg@googlemail.com> | 2009-06-23 00:27:44 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-06-23 16:43:16 -0700 |
commit | 3f721d1d6d6e6e55dbb5bfcb0e09346478adbb72 (patch) | |
tree | d4fc16559f2f7858d92e98f949408abdfb6c097b | |
parent | Merge branch 'maint' (diff) | |
download | tgif-3f721d1d6d6e6e55dbb5bfcb0e09346478adbb72.tar.xz |
builtin-remote: (get_one_entry): use strbuf
Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | builtin-remote.c | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/builtin-remote.c b/builtin-remote.c index 658d578588..2fb76d32f8 100644 --- a/builtin-remote.c +++ b/builtin-remote.c @@ -1276,15 +1276,14 @@ static int update(int argc, const char **argv) static int get_one_entry(struct remote *remote, void *priv) { struct string_list *list = priv; + struct strbuf url_buf = STRBUF_INIT; const char **url; int i, url_nr; - void **utilp; if (remote->url_nr > 0) { - utilp = &(string_list_append(remote->name, list)->util); - *utilp = xmalloc(strlen(remote->url[0])+strlen(" (fetch)")+1); - strcpy((char *) *utilp, remote->url[0]); - strcat((char *) *utilp, " (fetch)"); + strbuf_addf(&url_buf, "%s (fetch)", remote->url[0]); + string_list_append(remote->name, list)->util = + strbuf_detach(&url_buf, NULL); } else string_list_append(remote->name, list)->util = NULL; if (remote->pushurl_nr) { @@ -1296,10 +1295,9 @@ static int get_one_entry(struct remote *remote, void *priv) } for (i = 0; i < url_nr; i++) { - utilp = &(string_list_append(remote->name, list)->util); - *utilp = xmalloc(strlen(url[i])+strlen(" (push)")+1); - strcpy((char *) *utilp, url[i]); - strcat((char *) *utilp, " (push)"); + strbuf_addf(&url_buf, "%s (push)", url[i]); + string_list_append(remote->name, list)->util = + strbuf_detach(&url_buf, NULL); } return 0; |