summaryrefslogtreecommitdiff
path: root/src/odb_pack.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/odb_pack.c')
-rw-r--r--src/odb_pack.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/odb_pack.c b/src/odb_pack.c
index 4b860e864..176be5f01 100644
--- a/src/odb_pack.c
+++ b/src/odb_pack.c
@@ -422,6 +422,7 @@ static int pack_backend__exists(git_odb_backend *backend, const git_oid *oid)
static int pack_backend__foreach(git_odb_backend *_backend, int (*cb)(git_oid *oid, void *data), void *data)
{
+ int error;
struct git_pack_file *p;
struct pack_backend *backend;
unsigned int i;
@@ -430,12 +431,14 @@ static int pack_backend__foreach(git_odb_backend *_backend, int (*cb)(git_oid *o
backend = (struct pack_backend *)_backend;
/* Make sure we know about the packfiles */
- if (packfile_refresh_all(backend) < 0)
- return -1;
+ if ((error = packfile_refresh_all(backend)) < 0)
+ return error;
git_vector_foreach(&backend->packs, i, p) {
- git_pack_foreach_entry(p, cb, &data);
+ if ((error = git_pack_foreach_entry(p, cb, &data)) < 0)
+ return error;
}
+
return 0;
}