At this point we know that refs->name is a non-empty string, so we
know we don't have to look up the reference in the main repository.

Signed-off-by: Michael Haggerty <mhag...@alum.mit.edu>
---
 refs.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/refs.c b/refs.c
index 8edcc3b..3f4b95a 100644
--- a/refs.c
+++ b/refs.c
@@ -1303,9 +1303,7 @@ int resolve_gitlink_ref(const char *path, const char 
*refname, unsigned char *sh
                        ret = -1;
                        goto out;
                }
-               path = *refs->name
-                       ? git_path_submodule(refs->name, "%s", result.buf)
-                       : git_path("%s", result.buf);
+               path = git_path_submodule(refs->name, "%s", result.buf);
                parseval = parse_ref(path, &result, sha1, NULL);
        } while (!parseval);
 
-- 
2.1.1

--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to