Junio C Hamano <gitster@xxxxxxxxx> writes: > Please try this. oops, but with this, too. > diff --git a/submodule.c b/submodule.c > index ca0527f..8bd0a30 100644 > --- a/submodule.c > +++ b/submodule.c > ... > @@ -142,7 +142,9 @@ int is_submodule_modified(const char *path) > env[0] = strbuf_detach(&buf, NULL); > strbuf_addf(&buf, "GIT_DIR=%s/.git", path); > env[1] = strbuf_detach(&buf, NULL); > - env[2] = NULL; > + strbuf_addf(&buf, "GIT_INDEX_FILE="); This should be: strbuf_addf(&buf, "GIT_INDEX_FILE"); > + env[2] = strbuf_detach(&buf, NULL); > + env[3] = NULL; > > memset(&cp, 0, sizeof(cp)); > cp.argv = argv; -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html