Simplify cases where a strbuf_reset is immediately followed by a
strbuf_add by using strbuf_set operations.

Signed-off-by: Jeremiah Mahler <jmmah...@gmail.com>
---
 vcs-svn/svndump.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/vcs-svn/svndump.c b/vcs-svn/svndump.c
index 31d1d83..7fbf5d8 100644
--- a/vcs-svn/svndump.c
+++ b/vcs-svn/svndump.c
@@ -352,8 +352,7 @@ void svndump_read(const char *url, const char *local_ref, 
const char *notes_ref)
                case sizeof("UUID"):
                        if (constcmp(t, "UUID"))
                                continue;
-                       strbuf_reset(&dump_ctx.uuid);
-                       strbuf_addstr(&dump_ctx.uuid, val);
+                       strbuf_setstr(&dump_ctx.uuid, val);
                        break;
                case sizeof("Revision-number"):
                        if (constcmp(t, "Revision-number"))
-- 
2.0.0.592.gf55b190

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to