diff options
author | Han-Wen Nienhuys <hanwen@google.com> | 2017-09-26 13:21:49 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-27 09:14:02 +0900 |
commit | ea1d87560c5d66396d1785a208783cbf7a1651c2 (patch) | |
tree | 02d2f3fcc486861413d875639775121cf4c15499 | |
parent | d83d846e84d6ba6c7c4221d2681dfde820949362 (diff) | |
download | git-ea1d87560c5d66396d1785a208783cbf7a1651c2.tar.gz |
read_gitfile_gently: clarify return value ownership.hn/path-ownership-comment
Signed-off-by: Han-Wen Nienhuys <hanwen@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | setup.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -541,7 +541,8 @@ void read_gitfile_error_die(int error_code, const char *path, const char *dir) /* * Try to read the location of the git directory from the .git file, - * return path to git directory if found. + * return path to git directory if found. The return value comes from + * a shared buffer. * * On failure, if return_error_code is not NULL, return_error_code * will be set to an error code and NULL will be returned. If |