8230085: (fs) FileStore::isReadOnly is always true on macOS Catalina

Reviewed-by: alanb
This commit is contained in:
Brian Burkhalter 2019-09-13 16:03:31 -07:00
parent c0e1f9ee6c
commit c57ad7ffc0
4 changed files with 44 additions and 17 deletions

View file

@ -33,7 +33,7 @@ class UnixNativeDispatcher {
protected UnixNativeDispatcher() { }
// returns a NativeBuffer containing the given path
private static NativeBuffer copyToNativeBuffer(UnixPath path) {
static NativeBuffer copyToNativeBuffer(UnixPath path) {
byte[] cstr = path.getByteArrayForSysCalls();
int size = cstr.length + 1;
NativeBuffer buffer = NativeBuffers.getNativeBufferFromCache(size);