-
Bug
-
Resolution: Fixed
-
P2
-
1.2.0
-
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;
}
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;
}
- duplicates
-
JDK-4151875 RMI distributed garbage collection features are broken in JDK1.2fcs-A.
-
- Closed
-