mercurial/revlog.py
branchstable
changeset 20957 469d949a7cb8
parent 20217 33394f2e331e
child 20965 774ff56cbe34
--- a/mercurial/revlog.py	Thu Apr 03 20:35:56 2014 -0500
+++ b/mercurial/revlog.py	Mon Apr 07 14:18:10 2014 -0500
@@ -909,8 +909,13 @@
         ladd = l.append
 
         # preload the cache
-        self._chunkraw(revs[0], revs[-1])
-        offset, data = self._chunkcache
+        try:
+            self._chunkraw(revs[0], revs[-1])
+            offset, data = self._chunkcache
+        except OverflowError:
+            # issue4215 - we can't cache a run of chunks greater than
+            # 2G on Windows
+            return [self._chunk(rev) for rev in revs]
 
         for rev in revs:
             chunkstart = start(rev)