summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2016-09-29 16:49:35 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2016-09-29 16:49:35 -0700
commitb0af4819938761654050d934c12c244c2de629be (patch)
tree9289cd18858b689570d5c487ee56847933cfe180
parentMerge branch 'rs/checkout-some-states-are-const' into maint (diff)
parentstrbuf: use valid pointer in strbuf_remove() (diff)
downloadtgif-b0af4819938761654050d934c12c244c2de629be.tar.xz
Merge branch 'rs/strbuf-remove-fix' into maint
Code cleanup. * rs/strbuf-remove-fix: strbuf: use valid pointer in strbuf_remove()
-rw-r--r--strbuf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/strbuf.c b/strbuf.c
index f3bd5719c6..b839be491b 100644
--- a/strbuf.c
+++ b/strbuf.c
@@ -187,7 +187,7 @@ void strbuf_insert(struct strbuf *sb, size_t pos, const void *data, size_t len)
void strbuf_remove(struct strbuf *sb, size_t pos, size_t len)
{
- strbuf_splice(sb, pos, len, NULL, 0);
+ strbuf_splice(sb, pos, len, "", 0);
}
void strbuf_add(struct strbuf *sb, const void *data, size_t len)