@ -362,9 +362,9 @@ static int parse_config(const char *var, const char *value, void *data)
@@ -362,9 +362,9 @@ static int parse_config(const char *var, const char *value, void *data)
}
static int gitmodule_sha1_from_commit(const unsigned char *commit_sha1,
unsigned char *gitmodules_sha1)
unsigned char *gitmodules_sha1,
struct strbuf *rev)
{
struct strbuf rev = STRBUF_INIT;
int ret = 0;
if (is_null_sha1(commit_sha1)) {
@ -372,11 +372,10 @@ static int gitmodule_sha1_from_commit(const unsigned char *commit_sha1,
@@ -372,11 +372,10 @@ static int gitmodule_sha1_from_commit(const unsigned char *commit_sha1,
return 1;
}
strbuf_addf(&rev, "%s:.gitmodules", sha1_to_hex(commit_sha1));
if (get_sha1(rev.buf, gitmodules_sha1) >= 0)
strbuf_addf(rev, "%s:.gitmodules", sha1_to_hex(commit_sha1));
if (get_sha1(rev->buf, gitmodules_sha1) >= 0)
ret = 1;
strbuf_release(&rev);
return ret;
}
@ -390,7 +389,7 @@ static const struct submodule *config_from(struct submodule_cache *cache,
@@ -390,7 +389,7 @@ static const struct submodule *config_from(struct submodule_cache *cache,
{
struct strbuf rev = STRBUF_INIT;
unsigned long config_size;
char *config;
char *config = NULL;
unsigned char sha1[20];
enum object_type type;
const struct submodule *submodule = NULL;
@ -411,8 +410,8 @@ static const struct submodule *config_from(struct submodule_cache *cache,
@@ -411,8 +410,8 @@ static const struct submodule *config_from(struct submodule_cache *cache,
return entry->config;
}
if (!gitmodule_sha1_from_commit(commit_sha1, sha1))
return NULL;
if (!gitmodule_sha1_from_commit(commit_sha1, sha1, &rev))
goto out;
switch (lookup_type) {
case lookup_name:
@ -423,16 +422,11 @@ static const struct submodule *config_from(struct submodule_cache *cache,
@@ -423,16 +422,11 @@ static const struct submodule *config_from(struct submodule_cache *cache,
break;
}
if (submodule)
return submodule;
goto out;
config = read_sha1_file(sha1, &type, &config_size);
if (!config)
return NULL;
if (type != OBJ_BLOB) {
free(config);
return NULL;
}
if (!config || type != OBJ_BLOB)
goto out;
/* fill the submodule config into the cache */
parameter.cache = cache;
@ -441,6 +435,7 @@ static const struct submodule *config_from(struct submodule_cache *cache,
@@ -441,6 +435,7 @@ static const struct submodule *config_from(struct submodule_cache *cache,
parameter.overwrite = 0;
git_config_from_mem(parse_config, "submodule-blob", rev.buf,
config, config_size, ¶meter);
strbuf_release(&rev);
free(config);
switch (lookup_type) {
@ -451,6 +446,11 @@ static const struct submodule *config_from(struct submodule_cache *cache,
@@ -451,6 +446,11 @@ static const struct submodule *config_from(struct submodule_cache *cache,
default:
return NULL;
}
out:
strbuf_release(&rev);
free(config);
return submodule;
}
static const struct submodule *config_from_path(struct submodule_cache *cache,