(fs) WindowsPath::getPathForWin32Calls synchronizes on String object

XMLWordPrintable

    • Type: Bug
    • Resolution: Fixed
    • Priority: P4
    • 16
    • Affects Version/s: 8, 11, 15, 16
    • Component/s: core-libs
    • b21
    • windows

      sun.nio.fs.WindowsPath::getPathForWin32Calls synchronizes on 'path' field, which is a String object:

              if (type != WindowsPathType.DRIVE_RELATIVE) {
                  synchronized (path) {
                      pathForWin32Calls = new WeakReference<String>(resolved);
                  }
              }

      this might lead to a deadlock, this code should synchronize on "this".

            Assignee:
            Igor Ignatyev (Inactive)
            Reporter:
            Igor Ignatyev (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            5 Start watching this issue

              Created:
              Updated:
              Resolved: