Skip to content

Commit

Permalink
Merge branch 'tr/maint-strbuf-grow-nul-termination'
Browse files Browse the repository at this point in the history
* tr/maint-strbuf-grow-nul-termination:
  strbuf_grow(): maintain nul-termination even for new buffer
  • Loading branch information
Junio C Hamano committed Sep 2, 2011
2 parents 8a72864 + 8c74ef1 commit 5e2b3d7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions strbuf.c
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,8 @@ void strbuf_init(struct strbuf *sb, size_t hint)
{
sb->alloc = sb->len = 0;
sb->buf = strbuf_slopbuf;
if (hint) {
if (hint)
strbuf_grow(sb, hint);
sb->buf[0] = '\0';
}
}

void strbuf_release(struct strbuf *sb)
Expand Down Expand Up @@ -65,12 +63,15 @@ void strbuf_attach(struct strbuf *sb, void *buf, size_t len, size_t alloc)

void strbuf_grow(struct strbuf *sb, size_t extra)
{
int new_buf = !sb->alloc;
if (unsigned_add_overflows(extra, 1) ||
unsigned_add_overflows(sb->len, extra + 1))
die("you want to use way too much memory");
if (!sb->alloc)
if (new_buf)
sb->buf = NULL;
ALLOC_GROW(sb->buf, sb->len + extra + 1, sb->alloc);
if (new_buf)
sb->buf[0] = '\0';
}

void strbuf_trim(struct strbuf *sb)
Expand Down

0 comments on commit 5e2b3d7

Please sign in to comment.