mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-25 17:27:31 +00:00
Merge pull request #7036 from ThomasWaldmann/fix-7034-master
check: fix uninitialised variable if repo is completely empty, fixes #7034
This commit is contained in:
commit
7e3b6752cb
1 changed files with 1 additions and 0 deletions
|
@ -1081,6 +1081,7 @@ def report_error(msg):
|
|||
pi = ProgressIndicatorPercent(
|
||||
total=segment_count, msg="Checking segments %3.1f%%", step=0.1, msgid="repository.check"
|
||||
)
|
||||
segment = -1 # avoid uninitialized variable if there are no segment files at all
|
||||
for i, (segment, filename) in enumerate(self.io.segment_iterator()):
|
||||
pi.show(i)
|
||||
if segment <= last_segment_checked:
|
||||
|
|
Loading…
Reference in a new issue