summaryrefslogtreecommitdiff
path: root/submodule.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2018-11-21 22:57:48 +0900
committerLibravatar Junio C Hamano <gitster@pobox.com>2018-11-21 22:57:48 +0900
commit9674e7a333150d4f4a4752b25b4066bcd0406ddf (patch)
treec64c5d9732346ddf2f6084154e98f8cb0cc8ee6a /submodule.c
parentMerge branch 'en/status-multiple-renames-to-the-same-target-fix' into maint (diff)
parentrev-parse: --show-superproject-working-tree should work during a merge (diff)
downloadtgif-9674e7a333150d4f4a4752b25b4066bcd0406ddf.tar.xz
Merge branch 'sm/show-superproject-while-conflicted' into maint
A corner-case bugfix. * sm/show-superproject-while-conflicted: rev-parse: --show-superproject-working-tree should work during a merge
Diffstat (limited to 'submodule.c')
-rw-r--r--submodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/submodule.c b/submodule.c
index 4a5212bdfb..f27f14e868 100644
--- a/submodule.c
+++ b/submodule.c
@@ -1879,7 +1879,7 @@ const char *get_superproject_working_tree(void)
* We're only interested in the name after the tab.
*/
super_sub = strchr(sb.buf, '\t') + 1;
- super_sub_len = sb.buf + sb.len - super_sub - 1;
+ super_sub_len = strlen(super_sub);
if (super_sub_len > cwd_len ||
strcmp(&cwd[cwd_len - super_sub_len], super_sub))