Skip to content

Commit 81d2cae

Browse files
committed
strbuf_addbuf(): allow passing the same buf to dst and src
If sb and sb2 are the same (i.e. doubling the string), the underlying strbuf_add() can make sb2->buf invalid by calling strbuf_grow(sb) at the beginning; if realloc(3) done by strbuf_grow() needs to move the string, strbuf_add() will read from an already freed buffer. Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 902f235 commit 81d2cae

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

strbuf.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ static inline void strbuf_addstr(struct strbuf *sb, const char *s) {
105105
strbuf_add(sb, s, strlen(s));
106106
}
107107
static inline void strbuf_addbuf(struct strbuf *sb, const struct strbuf *sb2) {
108+
strbuf_grow(sb, sb2->len);
108109
strbuf_add(sb, sb2->buf, sb2->len);
109110
}
110111
extern void strbuf_adddup(struct strbuf *sb, size_t pos, size_t len);

0 commit comments

Comments
 (0)