author | Brandon Casey <drafnel@gmail.com> | |
Thu, 6 Oct 2011 04:21:33 +0000 (23:21 -0500) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 18 Oct 2011 20:28:17 +0000 (13:28 -0700) | ||
commit | 1844f8d591340bb43e4990c96afd0aba424adf48 | |
tree | ff5298b7c2368c78e25cf31001f97c4a16aef4d5 | tree | snapshot |
parent | 16b3b2d969e88be50cb0eb9af3c56fcfcda38756 | commit | diff |
strbuf.c: remove unnecessary strbuf_grow() from strbuf_getwholeline()
This use of strbuf_grow() is a historical artifact that was once used to
ensure that strbuf.buf was allocated and properly nul-terminated. This
was added before the introduction of the slopbuf in b315c5c0, which
guarantees that strbuf.buf always points to a usable nul-terminated string.
So let's remove it.
Signed-off-by: Brandon Casey <drafnel@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This use of strbuf_grow() is a historical artifact that was once used to
ensure that strbuf.buf was allocated and properly nul-terminated. This
was added before the introduction of the slopbuf in b315c5c0, which
guarantees that strbuf.buf always points to a usable nul-terminated string.
So let's remove it.
Signed-off-by: Brandon Casey <drafnel@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
strbuf.c | diff | blob | history |