git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
From: Sam McKelvie <sammck@gmail.com>
To: git@vger.kernel.org
Cc: Sam McKelvie <smckelvie@xevo.com>
Subject: [PATCH] submodule.c: Make get_superproject_working_tree() work when supermodule has unmerged changes of the submodule reference
Date: Mon, 24 Sep 2018 14:23:52 -0700	[thread overview]
Message-ID: <20180924212352.41909-1-smckelvie@xevo.com> (raw)

    Previously, "fatal: BUG: returned path string doesn't match cwd?" is displayed and
    git-rev-parse aborted.

    The problem is due to the fact that when a merge of the submodule reference is in progress,
    "git --stage —full-name <submodule-relative-path>” returns three seperate entries for the
    submodule (one for each stage) rather than a single entry; e.g.,

    $ git ls-files --stage --full-name submodule-child-test
    160000 dbbd2766fa330fa741ea59bb38689fcc2d283ac5 1       submodule-child-test
    160000 f174d1dbfe863a59692c3bdae730a36f2a788c51 2       submodule-child-test
    160000 e6178f3a58b958543952e12824aa2106d560f21d 3       submodule-child-test

    The code in get_superproject_working_tree() expected exactly one entry to be returned;
    this patch makes it use the first entry if multiple entries are returned.

    Signed-off-by: Sam McKelvie <smckelvie@xevo.com>
---
 submodule.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/submodule.c b/submodule.c
index 33de6ee5f..5b9d5ad7e 100644
--- a/submodule.c
+++ b/submodule.c
@@ -1885,7 +1885,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))
-- 
2.19.0.605.g01d371f74.dirty


             reply	other threads:[~2018-09-24 21:25 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-09-24 21:23 Sam McKelvie [this message]
2018-09-25  1:24 ` [PATCH] submodule.c: Make get_superproject_working_tree() work when supermodule has unmerged changes of the submodule reference Stefan Beller

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: http://vger.kernel.org/majordomo-info.html

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180924212352.41909-1-smckelvie@xevo.com \
    --to=sammck@gmail.com \
    --cc=git@vger.kernel.org \
    --cc=smckelvie@xevo.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).