mirror of
https://github.com/octoleo/restic.git
synced 2024-11-04 20:37:49 +00:00
0ce81d88b6
In a damaged repository with a missing blob, the error message tried to dereference the subtreeID field of the current node, which is a file however. Said field is set to nil for a file thus causing a segfault when dereferenced. Fix this by using the actual parentTreeID.
7 lines
235 B
Plaintext
7 lines
235 B
Plaintext
Bugfix: Don't abort the stats command when data blobs are missing
|
|
|
|
Runing the stats command in the blobs-per-file mode on a repository with
|
|
missing data blobs previously resulted in a crash.
|
|
|
|
https://github.com/restic/restic/pull/2668
|