Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6862064

incorrect implementation of PKIXParameters.clone()

XMLWordPrintable

    • b84
    • generic, sparc
    • generic, solaris_10

        1. some of the important attributes are not cloned, such as date.
        2. The clone operation should look like:
           copy.certStores = new ArrayList<CertStore>(certStores);
           copy.certPathCheckers = ...

            public Object clone() {
                try {
                    Object copy = super.clone();
                    // Must clone these because addCertStore, et al. modify them
                    if (certStores != null) {
                        certStores = new ArrayList<CertStore>(certStores);
                    }
                    if (certPathCheckers != null) {
                        certPathCheckers =
                                new ArrayList<PKIXCertPathChecker>(certPathCheckers);
                    }
                    return copy;
                } catch (CloneNotSupportedException e) {
                    /* Cannot happen */
                    throw new InternalError(e.toString());
                }
            }

        CrlRevocationChecker.java uses the method.

              xuelei Xuelei Fan
              xuelei Xuelei Fan
              Votes:
              0 Vote for this issue
              Watchers:
              1 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: