From c464975b8dac839ef8492b3a80e52ccb27fd313a Mon Sep 17 00:00:00 2001 From: Con Kolivas Date: Tue, 2 Nov 2010 00:18:17 +1100 Subject: [PATCH] Oops, dropped some code! Fix it. --- rzip.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rzip.c b/rzip.c index 46017f2..818845a 100644 --- a/rzip.c +++ b/rzip.c @@ -275,7 +275,7 @@ again: static inline tag next_tag(struct rzip_state *st, uchar *p, tag t) { t ^= st->hash_index[p[-1]]; - t ^= st->hash_index[p[-1]]; + t ^= st->hash_index[p[MINIMUM_MATCH - 1]]; return t; }