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

LinkedBlockingQueue.toArray(x) does not set "one-past" element of x to null

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 6
    • 6
    • core-libs
    • b49
    • generic
    • generic
    • Verified

        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.

              martin Martin Buchholz
              martin Martin Buchholz
              Votes:
              0 Vote for this issue
              Watchers:
              0 Start watching this issue

                Created:
                Updated:
                Resolved:
                Imported:
                Indexed: