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

AppContext are never released

XMLWordPrintable

    • 1.2.2
    • x86
    • windows_nt

      The dispose method of the sun.awt.AppContext never remove the appContext from the static hashtable of AppContext instances. The current code is

      // Next, we remove this and all subThreadGroups from threadGroup2appContext
      int numSubGroups = this.threadGroup.activeGroupCount();
      if (numSubGroups > 0) {
      ThreadGroup [] subGroups = new ThreadGroup[numSubGroups];
      numSubGroups = this.threadGroup.enumerate(subGroups);
      for (int subGroup = 0; subGroup < numSubGroups; subGroup++) {
      threadGroup2appContext.remove(subGroups[subGroup]);
      }
      }
      It should be :

      // Next, we remove this and all subThreadGroups from threadGroup2appContext
      int numSubGroups = this.threadGroup.activeGroupCount();
      if (numSubGroups > 0) {
      ThreadGroup [] subGroups = new ThreadGroup[numSubGroups];
      numSubGroups = this.threadGroup.enumerate(subGroups);
      for (int subGroup = 0; subGroup < numSubGroups; subGroup++) {
      threadGroup2appContext.remove(subGroups[subGroup]);
      }
      }
      threadGroup2appContext.remove(threadGroup);

      This creates memory leaks in the plug-in and swing run-time.

            jdochezorcl Jerome Dochez (Inactive)
            jdochezorcl Jerome Dochez (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: