Skip to content
Snippets Groups Projects
Commit c0a12e64 authored by Matt Mackall's avatar Matt Mackall
Browse files

Fix copy detection corner case

We were aborting if the copied from rev was before the cut-off limit,
rather than the copied _to_ rev. The copied from rev can be
arbitrarily old.
parent e88d03c2
No related branches found
No related tags found
No related merge requests found
......@@ -109,5 +109,7 @@
visit = [fctx]
while visit:
fc = visit.pop()
if fc.path() != orig and fc.path() not in old:
old[fc.path()] = 1
if fc.rev() < limit:
continue
......@@ -112,7 +114,5 @@
if fc.rev() < limit:
continue
if fc.path() != orig and fc.path() not in old:
old[fc.path()] = 1
visit += fc.parents()
old = old.keys()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment