diff options
| author | Marc Strapetz | 2011-02-09 11:54:09 +0000 |
|---|---|---|
| committer | Marc Strapetz | 2011-02-15 08:33:39 +0000 |
| commit | b297cf67a960b8cd1c03fc72357e2615ca7ba636 (patch) | |
| tree | d88c27d65bf7f7a914cba178eaa2a9da9d3eeb4d | |
| parent | a3620cbbe144c9b666ce4472fd5e8ef1222bd641 (diff) | |
| download | jgit-b297cf67a960b8cd1c03fc72357e2615ca7ba636.tar.gz jgit-b297cf67a960b8cd1c03fc72357e2615ca7ba636.tar.xz jgit-b297cf67a960b8cd1c03fc72357e2615ca7ba636.zip | |
Fix processing of broken symbolic references in RefDirectory
Change-Id: I1f85890fe718f38ef4b62ebe711f0668267873a2
| -rw-r--r-- | org.eclipse.jgit/src/org/eclipse/jgit/storage/file/RefDirectory.java | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/RefDirectory.java b/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/RefDirectory.java index c8c7d0dd83..e8ce2c5467 100644 --- a/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/RefDirectory.java +++ b/org.eclipse.jgit/src/org/eclipse/jgit/storage/file/RefDirectory.java @@ -290,17 +290,19 @@ public class RefDirectory extends RefDatabase { RefList.Builder<Ref> symbolic = scan.symbolic; for (int idx = 0; idx < symbolic.size();) { - Ref ref = symbolic.get(idx); - ref = resolve(ref, 0, prefix, loose, packed); - if (ref != null && ref.getObjectId() != null) { - symbolic.set(idx, ref); + final Ref symbolicRef = symbolic.get(idx); + final Ref resolvedRef = resolve(symbolicRef, 0, prefix, loose, packed); + if (resolvedRef != null && resolvedRef.getObjectId() != null) { + symbolic.set(idx, resolvedRef); idx++; } else { // A broken symbolic reference, we have to drop it from the // collections the client is about to receive. Should be a // rare occurrence so pay a copy penalty. - loose = loose.remove(idx); symbolic.remove(idx); + final int toRemove = loose.find(symbolicRef.getName()); + if (0 <= toRemove) + loose = loose.remove(toRemove); } } |
