diff options
| author | Junio C Hamano <gitster@pobox.com> | 2017-10-23 14:19:02 +0900 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2017-10-23 14:19:02 +0900 |
| commit | dd3bfe4f5fda5e8e8093be2d18cdc80a90e25e5b (patch) | |
| tree | 69f56b9802809276e92b5abf9e531976d041224d /strbuf.h | |
| parent | a37b73e9bb8b830a679abad23eff9b0949e07416 (diff) | |
| parent | 6cdf8a7929688ea5702ab53f450d038e973e64e1 (diff) | |
| download | git-dd3bfe4f5fda5e8e8093be2d18cdc80a90e25e5b.tar.xz | |
Merge branch 'ma/ts-cleanups' into maint
Assorted bugfixes and clean-ups.
* ma/ts-cleanups:
ThreadSanitizer: add suppressions
strbuf_setlen: don't write to strbuf_slopbuf
pack-objects: take lock before accessing `remaining`
convert: always initialize attr_action in convert_attrs
Diffstat (limited to 'strbuf.h')
| -rw-r--r-- | strbuf.h | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -154,7 +154,10 @@ static inline void strbuf_setlen(struct strbuf *sb, size_t len) if (len > (sb->alloc ? sb->alloc - 1 : 0)) die("BUG: strbuf_setlen() beyond buffer"); sb->len = len; - sb->buf[len] = '\0'; + if (sb->buf != strbuf_slopbuf) + sb->buf[len] = '\0'; + else + assert(!strbuf_slopbuf[0]); } /** |
