diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-04-23 22:07:57 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-04-23 22:07:57 -0700 |
commit | 5938454cbc585e0f4bdd9f1cc87c6886a3c1bff3 (patch) | |
tree | 72bb28f592f0b3207fcfb25f243287ca6e4b18c3 /git-compat-util.h | |
parent | 2d646e3e1fd0ae7f525034abee73d06ac8946729 (diff) | |
parent | 5781a9a2703e96b01587bb95ceebcc53f2cee91c (diff) | |
download | git-5938454cbc585e0f4bdd9f1cc87c6886a3c1bff3.tar.gz |
Merge branch 'dt/xgethostname-nul-termination'
gethostname(2) may not NUL terminate the buffer if hostname does
not fit; unfortunately there is no easy way to see if our buffer
was too small, but at least this will make sure we will not end up
using garbage past the end of the buffer.
* dt/xgethostname-nul-termination:
xgethostname: handle long hostnames
use HOST_NAME_MAX to size buffers for gethostname(2)
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index 8a4a3f85e7..bd04564a69 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -884,6 +884,12 @@ static inline size_t xsize_t(off_t len) __attribute__((format (printf, 3, 4))) extern int xsnprintf(char *dst, size_t max, const char *fmt, ...); +#ifndef HOST_NAME_MAX +#define HOST_NAME_MAX 256 +#endif + +extern int xgethostname(char *buf, size_t len); + /* in ctype.c, for kwset users */ extern const unsigned char tolower_trans_tbl[256]; |