-
Bug
-
Resolution: Fixed
-
P3
-
6
-
b49
-
generic
-
generic
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2128538 | 5.0u6 | Martin Buchholz | P3 | Resolved | Fixed | b02 |
This program:
import java.util.*;
import java.util.concurrent.*;
public class Bug {
public static void main(String[] args) throws Throwable {
Collection<Integer> c = new LinkedBlockingQueue<Integer>();
Integer[] a = new Integer[1];
a[0] = 42;
System.out.println(c.toArray(a)[0]);
}
}
should print "null", but actually prints 42.
import java.util.*;
import java.util.concurrent.*;
public class Bug {
public static void main(String[] args) throws Throwable {
Collection<Integer> c = new LinkedBlockingQueue<Integer>();
Integer[] a = new Integer[1];
a[0] = 42;
System.out.println(c.toArray(a)[0]);
}
}
should print "null", but actually prints 42.
- backported by
-
JDK-2128538 LinkedBlockingQueue.toArray(x) does not set "one-past" element of x to null
-
- Resolved
-