2
0
Эх сурвалжийг харах

Merge pull request #1164 from thomasgilgenast/initialize-pack-entry-count

initialize pack entry count to 0 in pack.PackStreamCopier.verify()
Jelmer Vernooij 2 жил өмнө
parent
commit
3fdec683ac
1 өөрчлөгдсөн 1 нэмэгдсэн , 0 устгасан
  1. 1 0
      dulwich/pack.py

+ 1 - 0
dulwich/pack.py

@@ -1059,6 +1059,7 @@ class PackStreamCopier(PackStreamReader):
         See PackStreamReader.iterobjects for a list of exceptions this may
         throw.
         """
+        i = 0  # default count of entries if read_objects() is empty
         for i, unpacked in enumerate(self.read_objects()):
             if self._delta_iter:
                 self._delta_iter.record(unpacked)