aboutsummaryrefslogtreecommitdiff
path: root/attr.c
diff options
context:
space:
mode:
authorLukas Fleischer <git@cryptocrack.de>2013-04-13 15:28:31 +0200
committerJunio C Hamano <gitster@pobox.com>2013-04-17 09:51:47 -0700
commitff36682505dfb580172306fe1b265b860f89bcea (patch)
treea3310d5640445f9a911563a55077e5aebeefac4c /attr.c
parent29fb37b272debaf4f5f6eb7cf476de9274492930 (diff)
downloadgit-ff36682505dfb580172306fe1b265b860f89bcea.tar.gz
git-ff36682505dfb580172306fe1b265b860f89bcea.tar.xz
read_blob_data_from_index(): optionally return the size of blob data
This allows for optionally getting the size of the returned data and will be used in a follow-up patch. Signed-off-by: Lukas Fleischer <git@cryptocrack.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'attr.c')
-rw-r--r--attr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/attr.c b/attr.c
index 243d60ffa..09e7e50d3 100644
--- a/attr.c
+++ b/attr.c
@@ -387,7 +387,7 @@ static struct attr_stack *read_attr_from_index(const char *path, int macro_ok)
char *buf, *sp;
int lineno = 0;
- buf = read_blob_data_from_index(use_index ? use_index : &the_index, path);
+ buf = read_blob_data_from_index(use_index ? use_index : &the_index, path, NULL);
if (!buf)
return NULL;