On 4/30/07, Shawn O. Pearce <spearce@xxxxxxxxxxx> wrote:
Dana How <danahow@xxxxxxxxx> wrote: > sha1close() flushes, writes checksum, and closes. > The 2nd can be suppressed; make the last suppressible as well. ... > diff --git a/csum-file.c b/csum-file.c > --- a/csum-file.c > +++ b/csum-file.c > @@ -35,7 +35,10 @@ int sha1close(struct sha1file *f, unsigned char *result, int update) > + f->offset = 0; > } > + if (update < 0) > + return 0; /* only want to flush (no checksum write, no close) */ Huh. Nobody currently uses that update parameter; all current in-tree callers (which better be *all* callers since we don't have a true libgit!) seem to always pass a 1 for this argument. This makes the later: if (update) sha1flush(f, 20); always true anytime sha1close is called. Maybe we should be redefining that update argument to be 1 means do all work, 0 means return where you return update < 0 above?
Considering I had to look at all the sha1close call sites to confirm -1 was a safe new value, I should have reached your conclusion as well. But I was really trying to focus on additions, not alterations. I'll either roll this into my next patchset (also in pack-objects), or include it in any other changes to this patchset if any. Thanks, -- Dana L. How danahow@xxxxxxxxx +1 650 804 5991 cell - 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