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

NullPointerException at javafx.scene.Scene$ScenePulseListener.synchronizeSceneNodes

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Duplicate
    • Icon: P4 P4
    • 8u20
    • 8
    • javafx
    • None
    • FX 8 b129

      Investigation of RT-35400 highlighted this NullPointerException:

      Exception in thread "JavaFX Application Thread" java.lang.NullPointerException
      at javafx.scene.Scene$ScenePulseListener.synchronizeSceneNodes(Scene.java:2282)
      at javafx.scene.Scene$ScenePulseListener.pulse(Scene.java:2405)
      at com.sun.javafx.tk.Toolkit$3.run(Toolkit.java:322)
      at com.sun.javafx.tk.Toolkit$3.run(Toolkit.java:320)
      at java.security.AccessController.doPrivileged(Native Method)
      at com.sun.javafx.tk.Toolkit.runPulse(Toolkit.java:320)
      at com.sun.javafx.tk.Toolkit.firePulse(Toolkit.java:349)
      at com.sun.javafx.tk.quantum.QuantumToolkit.pulse(QuantumToolkit.java:479)
      at com.sun.javafx.tk.quantum.QuantumToolkit.pulse(QuantumToolkit.java:460)
      at com.sun.javafx.tk.quantum.QuantumToolkit$13.run(QuantumToolkit.java:327)
      at com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:95)
      at com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
      at com.sun.glass.ui.win.WinApplication.access$300(WinApplication.java:39)
      at com.sun.glass.ui.win.WinApplication$4$1.run(WinApplication.java:112)
      at java.lang.Thread.run(Thread.java:744)


      Quoting Anthony Petrov:
      "Note that the corresponding code in Scene.java that throws the exception is now located at another lines due to other changes to that file. Nevertheless, the piece of code that actually throws it looks like this:

                      for (int i = 0 ; i < dirtyNodesSize; ++i) {
                          Node node = dirtyNodes[i];
                          dirtyNodes[i] = null;
                          if (node.getScene() == Scene.this) {
                                  node.impl_syncPeer();
                              }
                          }

      There's a missing null check before using the node variable in the if() condition."

            msladecek Martin Sládeček
            yjoan Yves Joan (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported: