sha1close() flushes, writes checksum, and closes. The 2nd can be suppressed; make the last suppressible as well. Signed-off-by: Dana L. How <danahow@xxxxxxxxx> --- csum-file.c | 3 +++ 1 files changed, 3 insertions(+), 0 deletions(-) diff --git a/csum-file.c b/csum-file.c index 7c806ad..993c899 100644 --- a/csum-file.c +++ b/csum-file.c @@ -35,7 +35,10 @@ int sha1close(struct sha1file *f, unsigned char *result, int update) if (offset) { SHA1_Update(&f->ctx, f->buffer, offset); sha1flush(f, offset); + f->offset = 0; } + if (update < 0) + return 0; /* only want to flush (no checksum write, no close) */ SHA1_Final(f->buffer, &f->ctx); if (result) hashcpy(result, f->buffer); -- 1.5.2.rc0.766.gba60-dirty - 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