mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-28 23:34:52 +02:00
8255074: sun.nio.fs.WindowsPath::getPathForWin32Calls synchronizes on String object
Reviewed-by: bpb
This commit is contained in:
parent
9e9f5e6974
commit
6bd05b12a0
1 changed files with 2 additions and 2 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2008, 2016, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2008, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -206,7 +206,7 @@ class WindowsPath implements Path {
|
|||
// directory on removal media devices can change during the lifetime
|
||||
// of the VM)
|
||||
if (type != WindowsPathType.DRIVE_RELATIVE) {
|
||||
synchronized (path) {
|
||||
synchronized (this) {
|
||||
pathForWin32Calls = new WeakReference<String>(resolved);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue