Skip to content

Commit b127c52

Browse files
committed
fixed probable null pointer issue - relates to github #1907
1 parent d252f96 commit b127c52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

prov/src/main/jdk1.3/org/bouncycastle/x509/ExtendedPKIXParameters.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ public void setTrustedACIssuers(Set trustedACIssuers)
499499
{
500500
if (trustedACIssuers == null)
501501
{
502-
trustedACIssuers.clear();
502+
this.trustedACIssuers.clear();
503503
return;
504504
}
505505
for (Iterator it = trustedACIssuers.iterator(); it.hasNext();)

0 commit comments

Comments
 (0)