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

Linux: Hotspot build 1.3.0beta-b01 throws invalid NullPointerException

XMLWordPrintable

    • linux-beta
    • x86
    • linux
    • Verified



      Name: dkC103137 Date: 04/25/2000



      Hotspot Client VM (build 1.3-internal-release, mixed mode),
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0beta-b01), throws
      NullPointerException instead of StackOverflowError or OutOfMemoryError while infinite
      recursive method invocation. See test source and diagnostics below.

      You need compile the test.java file with oldjavac, because javac crashes
      while compiling the test.

      The bug can be reproduced in
      /net/sqesvr/vsn/GammaBase/Bugs/<this bug number>
      directory, using doit.sh script.

      -------------------------- test.java ---------------------------------
      public class test {

        public static int counter = 1;

        static int Runner() {
              counter = counter * -1;
              int i = counter;
              if(counter < 2) counter += Runner();
              return i;
        }

        public static void main(String argv[]) {
              try{
                      Runner();
              } catch (StackOverflowError e) {
                      System.out.println("OK! StackOverflowError was thrown");
              } catch (OutOfMemoryError e) {
                      System.out.println("OK! OutOfMemoryError was thrown");
              } catch (NullPointerException e) {
                      System.out.println("Error! NullPointerException was thrown");
              }
        }
      }

      -------------------------- output ------------------------------------
      % ~/localjdk1.3/linux/bin/java test
      Error! NullPointerException was thrown
      %

      ======================================================================

            hongzh Hong Zhang
            duke J. Duke
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: