1 fix overlapped memcpy in heapextract
3 --- a/src/fingerprint.c 2013-07-04 22:53:25.674741538 +0200
4 +++ b/src/fingerprint.c 2013-07-04 22:54:09.009741166 +0200
8 memcpy(item, p, sizeof(entry_t));
9 - memcpy(&(t->heap[0]), &(t->heap[t->size - 1]), sizeof(entry_t));
12 + memcpy(&(t->heap[0]), &(t->heap[t->size - 1]), sizeof(entry_t));
15 siftdown(t, t->size, 0);