Rename read_pipe() with read_fd() and make its buffer nul-terminated.
commitc4fba0a358d43fdb2301dd122d68c49dd8471d71
authorCarlos Rica <jasampler@gmail.com>
Wed, 18 Jul 2007 18:31:03 +0000 (18 20:31 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 19 Jul 2007 00:30:03 +0000 (18 17:30 -0700)
tree72c7d505f4a8e5da3514403ca379d4b51b55a355
parent6fb73e442a7dc3e4b296b409a6f30145d85750e9
Rename read_pipe() with read_fd() and make its buffer nul-terminated.

The new name is closer to the purpose of the function.

A NUL-terminated buffer makes things easier when callers need that.
Since the function returns only the memory written with data,
almost always allocating more space than needed because final
size is unknown, an extra NUL terminating the buffer is harmless.
It is not included in the returned size, so the function
remains working as before.

Also, now the function allows the buffer passed to be NULL at first,
and alloc_nr is now used for growing the buffer, instead size=*2.

Signed-off-by: Carlos Rica <jasampler@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-stripspace.c
cache.h
mktag.c
sha1_file.c