summaryrefslogtreecommitdiff
path: root/attr.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2013-04-22 01:39:45 (GMT)
committerJunio C Hamano <gitster@pobox.com>2013-04-22 01:39:45 (GMT)
commit4b35b007a6bd8b76bd37589fa397c12265935029 (patch)
tree23b3c8432d49afea63efdedeab721b753a5e1eda /attr.c
parentd2949c7b3c8a2f0d2cb5c61d99017a1a85a46264 (diff)
parent4982fd78f61db69504f91151f94fce9914d610b6 (diff)
downloadgit-4b35b007a6bd8b76bd37589fa397c12265935029.zip
git-4b35b007a6bd8b76bd37589fa397c12265935029.tar.gz
git-4b35b007a6bd8b76bd37589fa397c12265935029.tar.bz2
Merge branch 'lf/read-blob-data-from-index'
Reduce duplicated code between convert.c and attr.c. * lf/read-blob-data-from-index: convert.c: remove duplicate code read_blob_data_from_index(): optionally return the size of blob data attr.c: extract read_index_data() as read_blob_data_from_index()
Diffstat (limited to 'attr.c')
-rw-r--r--attr.c35
1 files changed, 1 insertions, 34 deletions
diff --git a/attr.c b/attr.c
index 689bc2a..0e774c6 100644
--- a/attr.c
+++ b/attr.c
@@ -381,46 +381,13 @@ static struct attr_stack *read_attr_from_file(const char *path, int macro_ok)
return res;
}
-static void *read_index_data(const char *path)
-{
- int pos, len;
- unsigned long sz;
- enum object_type type;
- void *data;
- struct index_state *istate = use_index ? use_index : &the_index;
-
- len = strlen(path);
- pos = index_name_pos(istate, path, len);
- if (pos < 0) {
- /*
- * We might be in the middle of a merge, in which
- * case we would read stage #2 (ours).
- */
- int i;
- for (i = -pos - 1;
- (pos < 0 && i < istate->cache_nr &&
- !strcmp(istate->cache[i]->name, path));
- i++)
- if (ce_stage(istate->cache[i]) == 2)
- pos = i;
- }
- if (pos < 0)
- return NULL;
- data = read_sha1_file(istate->cache[pos]->sha1, &type, &sz);
- if (!data || type != OBJ_BLOB) {
- free(data);
- return NULL;
- }
- return data;
-}
-
static struct attr_stack *read_attr_from_index(const char *path, int macro_ok)
{
struct attr_stack *res;
char *buf, *sp;
int lineno = 0;
- buf = read_index_data(path);
+ buf = read_blob_data_from_index(use_index ? use_index : &the_index, path, NULL);
if (!buf)
return NULL;