summary refs log tree commit diff
path: root/crypto/src/asn1/esf/OtherSigningCertificate.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/asn1/esf/OtherSigningCertificate.cs')
-rw-r--r--crypto/src/asn1/esf/OtherSigningCertificate.cs7
1 files changed, 1 insertions, 6 deletions
diff --git a/crypto/src/asn1/esf/OtherSigningCertificate.cs b/crypto/src/asn1/esf/OtherSigningCertificate.cs
index f7b9f5e66..2b6d646bc 100644
--- a/crypto/src/asn1/esf/OtherSigningCertificate.cs
+++ b/crypto/src/asn1/esf/OtherSigningCertificate.cs
@@ -127,12 +127,7 @@ namespace Org.BouncyCastle.Asn1.Esf
 		public override Asn1Object ToAsn1Object()
 		{
 			Asn1EncodableVector v = new Asn1EncodableVector(certs);
-
-			if (policies != null)
-			{
-				v.Add(policies);
-			}
-
+            v.AddOptional(policies);
 			return new DerSequence(v);
 		}
 	}