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

null pointer exception in AccessControlContext.equals

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P2 P2
    • 1.2.0
    • 1.2.0
    • security-libs
    • None
    • 1.2beta4
    • generic, sparc
    • generic, solaris_2.6
    • Not verified

      AccessControlContext.equals(Object obj) gets a null pointer exception if
      obj is an AccessController with a null context.

      See the underlined line below:


      if (context == null) {
      return (that.context == null);
      }

      boolean match;
      for (int i = 0; i < this.context.length; i++) {
      match = false;
      for (int j = 0; (j < that.context.length) && !match; j++) {
                                 --------------------------
      match =
      ((this.context[i] == null) && (that.context[j] == null)) ||
      (this.context[i].equals(that.context[j]));
      }
      if (!match) return false;
      }

            lcablesunw Larry Cable (Inactive)
            rschemersunw Roland Schemers (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: