On Mon, Sep 17, 2018 at 2:36 PM Stefan Beller <sbeller@xxxxxxxxxx> wrote: > > Helped-by: Junio C Hamano <gitster@xxxxxxxxx> > Signed-off-by: Stefan Beller <sbeller@xxxxxxxxxx> > --- > sha1-array.c | 17 +++++++++++++++++ > sha1-array.h | 9 +++++++++ > 2 files changed, 26 insertions(+) > > diff --git a/sha1-array.c b/sha1-array.c > index 265941fbf40..67db5eeec9a 100644 > --- a/sha1-array.c > +++ b/sha1-array.c > @@ -77,3 +77,20 @@ int oid_array_for_each_unique(struct oid_array *array, > } > return 0; > } > + > +void oid_array_filter(struct oid_array *array, > + for_each_oid_fn want, > + void *cb_data) > +{ > + unsigned nr = array->nr, src, dst; > + struct object_id *oids = array->oids; Blargh :-( I made this last minute "pull oids out to be more like the object_array_filter" and typo'd without compile checking. Please discard this series. Stefan