mirror of
https://github.com/borgbackup/borg.git
synced 2026-07-15 21:12:50 -04:00
Attic 0.8.1
This commit is contained in:
parent
7e7c725428
commit
9e9ece675d
2 changed files with 7 additions and 1 deletions
6
CHANGES
6
CHANGES
|
|
@ -3,6 +3,12 @@ Attic Changelog
|
|||
|
||||
Here you can see the full list of changes between each Attic release.
|
||||
|
||||
Version 0.8.1
|
||||
-------------
|
||||
|
||||
(bugfix release, released on Oct 4, 2013)
|
||||
|
||||
- Fix segmentation fault issue.
|
||||
|
||||
Version 0.8
|
||||
-----------
|
||||
|
|
|
|||
|
|
@ -92,7 +92,7 @@ hashindex_lookup(HashIndex *index, const void *key)
|
|||
}
|
||||
}
|
||||
else if(BUCKET_MATCHES_KEY(index, idx, key)) {
|
||||
if (didx != -1) {
|
||||
if (didx != -1 && !index->readonly) {
|
||||
memcpy(BUCKET_ADDR_WRITE(index, didx), BUCKET_ADDR_READ(index, idx), index->bucket_size);
|
||||
BUCKET_MARK_DELETED(index, idx);
|
||||
idx = didx;
|
||||
|
|
|
|||
Loading…
Reference in a new issue