diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-07-25 14:13:47 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-07-25 14:13:47 -0700 |
commit | b4e8a847ba4e775fb7d422b2daf18356db50eec8 (patch) | |
tree | b7beddae0b6b9800c8a40dfc6b4be33764b6a4a6 /path.c | |
parent | 7b01ab562ae14f5e5aedf0c0e769c74925a19809 (diff) | |
parent | 31471ba21ee29886ab856981e52f723c913d7f40 (diff) | |
download | git-b4e8a847ba4e775fb7d422b2daf18356db50eec8.tar.gz |
Merge branch 'rs/use-strbuf-addbuf'
Code cleanup.
* rs/use-strbuf-addbuf:
strbuf: avoid calling strbuf_grow() twice in strbuf_addbuf()
use strbuf_addbuf() for appending a strbuf to another
Diffstat (limited to 'path.c')
-rw-r--r-- | path.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -483,7 +483,7 @@ static void do_submodule_path(struct strbuf *buf, const char *path, strbuf_addstr(buf, git_dir); } strbuf_addch(buf, '/'); - strbuf_addstr(&git_submodule_dir, buf->buf); + strbuf_addbuf(&git_submodule_dir, buf); strbuf_vaddf(buf, fmt, args); |