Re: [PATCH 05/19] object: parse_object to honor its repository argument

2018-10-12 Thread Stefan Beller
On Thu, Oct 11, 2018 at 3:11 PM Jonathan Tan wrote: > > > In 8e4b0b6047 (object.c: allow parse_object to handle > > arbitrary repositories, 2018-06-28), we forgot to pass the > > repository down to the read_object_file. > > [snip] > > > @@ -270,7 +270,7 @@ struct object *parse_object(struct

Re: [PATCH 05/19] object: parse_object to honor its repository argument

2018-10-11 Thread Jonathan Tan
> In 8e4b0b6047 (object.c: allow parse_object to handle > arbitrary repositories, 2018-06-28), we forgot to pass the > repository down to the read_object_file. [snip] > @@ -270,7 +270,7 @@ struct object *parse_object(struct repository *r, const > struct object_id *oid) > return

[PATCH 05/19] object: parse_object to honor its repository argument

2018-10-11 Thread Stefan Beller
In 8e4b0b6047 (object.c: allow parse_object to handle arbitrary repositories, 2018-06-28), we forgot to pass the repository down to the read_object_file. Signed-off-by: Stefan Beller --- object.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/object.c b/object.c index