Signed-off-by: Hervé Cauwelier <herve@xxxxxxxxxx> --- src/odb.c | 11 +++++++---- 1 files changed, 7 insertions(+), 4 deletions(-) diff --git a/src/odb.c b/src/odb.c index a612299..65a7993 100644 --- a/src/odb.c +++ b/src/odb.c @@ -1263,13 +1263,16 @@ static int read_packed(git_obj *out, git_pack *p, const git_oid *id) if (pack_openidx(p)) return GIT_ERROR; + if (pack_openpack(p)) { + pack_decidx(p); + return GIT_ERROR; + } res = p->idx_search(&pos, p, id); pack_decidx(p); + assert(pos < p->pack_map.len); - if (!res) { - /* TODO unpack object at pos */ - res = GIT_ERROR; - } + if (res == GIT_SUCCESS) + return inflate_pack_obj(out, p, pos); return res; } -- 1.6.5 -- 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