From 5851ac2dfed01258adee729596ceed7bdfe069a4 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sat, 27 Oct 2007 04:41:18 +0000 Subject: [PATCH] Fixed a problem with build_hash_table() getting called too often when overwriting a shorter file. --- match.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/match.c b/match.c index 01e91173..79e591a2 100644 --- a/match.c +++ b/match.c @@ -171,7 +171,10 @@ static void hash_search(int f,struct sum_struct *s, if (offset >= reset) { sum_pos = build_hash_table(s, sum_pos); - reset = sum_pos * s->blength; + if (sum_pos == s->count) + reset = len; + else + reset = sum_pos * s->blength; } if (verbose > 4) { -- 2.34.1