X-Git-Url: https://git.octo.it/?p=git.git;a=blobdiff_plain;f=diff-delta.c;h=25a798d050c6319f3d524c9c605ab70ea35ae7a1;hp=c61887518874d550f66d2d52bd7559d023fcb176;hb=HEAD;hpb=4edd44725c621b3a2c6c9c4d8f130ceea2ba355a diff --git a/diff-delta.c b/diff-delta.c index c6188751..25a798d0 100644 --- a/diff-delta.c +++ b/diff-delta.c @@ -199,7 +199,6 @@ struct delta_index * create_delta_index(const void *buf, unsigned long bufsize) entry->next = hash[i]; hash[i] = entry++; hash_count[i]++; - entries--; } } @@ -230,10 +229,6 @@ struct delta_index * create_delta_index(const void *buf, unsigned long bufsize) } free(hash_count); - /* If we didn't use all hash entries, free the unused memory. */ - if (entries) - index = realloc(index, memsize - entries * sizeof(*entry)); - return index; }