summaryrefslogtreecommitdiff
path: root/submodule.h
diff options
context:
space:
mode:
authorAlexandr Miloslavskiy <alexandr.miloslavskiy@syntevo.com>2020-03-10 13:11:24 (GMT)
committerJunio C Hamano <gitster@pobox.com>2020-03-10 18:41:40 (GMT)
commit49d3c4b481f12c2ec655a71d5a5b9259a398d059 (patch)
treea678f157d48912fff898af8044b98b9a3f004714 /submodule.h
parent4530a85b4c34f009b5f190eb2dc8367801de5028 (diff)
downloadgit-49d3c4b481f12c2ec655a71d5a5b9259a398d059.zip
git-49d3c4b481f12c2ec655a71d5a5b9259a398d059.tar.gz
git-49d3c4b481f12c2ec655a71d5a5b9259a398d059.tar.bz2
get_superproject_working_tree(): return strbuf
Together with the previous commits, this commit fully fixes the problem of using shared buffer for `real_path()` in `get_superproject_working_tree()`. Signed-off-by: Alexandr Miloslavskiy <alexandr.miloslavskiy@syntevo.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'submodule.h')
-rw-r--r--submodule.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/submodule.h b/submodule.h
index c81ec1a..4dad649 100644
--- a/submodule.h
+++ b/submodule.h
@@ -152,8 +152,8 @@ void absorb_git_dir_into_superproject(const char *path,
/*
* Return the absolute path of the working tree of the superproject, which this
* project is a submodule of. If this repository is not a submodule of
- * another repository, return NULL.
+ * another repository, return 0.
*/
-const char *get_superproject_working_tree(void);
+int get_superproject_working_tree(struct strbuf *buf);
#endif