sha1_file: improve sha1_file_name() perfs
As sha1_file_name() could be performance sensitive, let's make it faster by using strbuf_addstr() and strbuf_addc() instead of strbuf_addf(). Helped-by: Derrick Stolee <stolee@gmail.com> Helped-by: Jeff Hostetler <git@jeffhostetler.com> Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Christian Couder committed
Jan 18, 2018 at 11:08 UTC
3449847168c9fa6e23db364e7da9077eadd39547
1 file changed
+2
-2
sha1_file.c
+2
-2
@@ -253,8 +253,8 @@ static void fill_sha1_path(struct strbuf *buf, const unsigned char *sha1)
253
254
void sha1_file_name(struct strbuf *buf, const unsigned char *sha1)
255
{
256
- strbuf_addf(buf, "%s/", get_object_directory());
257
-
256
+ strbuf_addstr(buf, get_object_directory());
257
+ strbuf_addch(buf, '/');
258
fill_sha1_path(buf, sha1);
259
}
260