Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
strbuf_addbuf(): allow passing the same buf to dst and src
[gitweb.git]
/
strbuf.h
diff --git
a/strbuf.h
b/strbuf.h
index fa07ecf094bd3ef8997958fde29199f8fb6421b9..4971743a246950333fba455770937075e5a4eece 100644
(file)
--- a/
strbuf.h
+++ b/
strbuf.h
@@
-105,6
+105,7
@@
static inline void strbuf_addstr(struct strbuf *sb, const char *s) {
strbuf_add(sb, s, strlen(s));
}
static inline void strbuf_addbuf(struct strbuf *sb, const struct strbuf *sb2) {
+ strbuf_grow(sb, sb2->len);
strbuf_add(sb, sb2->buf, sb2->len);
}
extern void strbuf_adddup(struct strbuf *sb, size_t pos, size_t len);