summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2019-03-26 22:45:04 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2019-03-26 22:45:04 +0700
commit6e4f26e6722e26a9fd3821cc642d363c005b25a9 (patch)
tree763e6d6e05f054d6d52740a90f0afdc5d2b3e2aa
parentDTLS: Guard against epoch wrapping (diff)
parentUpdate PkixCertPath.cs (diff)
downloadBouncyCastle.NET-ed25519-6e4f26e6722e26a9fd3821cc642d363c005b25a9.tar.xz
Merge branch 'kakkerlakgly-patch-1'
-rw-r--r--crypto/src/pkix/PkixCertPath.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/pkix/PkixCertPath.cs b/crypto/src/pkix/PkixCertPath.cs
index 3c428f6fb..459c1612f 100644
--- a/crypto/src/pkix/PkixCertPath.cs
+++ b/crypto/src/pkix/PkixCertPath.cs
@@ -306,7 +306,7 @@ namespace Org.BouncyCastle.Pkix
 				return false;
 
 			IEnumerator e1 = thisCerts.GetEnumerator();
-			IEnumerator e2 = thisCerts.GetEnumerator();
+			IEnumerator e2 = otherCerts.GetEnumerator();
 
 			while (e1.MoveNext())
 			{