-
Bug
-
Resolution: Fixed
-
P4
-
6
-
b53
-
generic
-
windows_98
This code is a no-op because O_RDONLY is 0:
if (flags & O_RDONLY) {
access = GENERIC_READ;
}
The variable `pathlen' is unused.
The code could benefit from a little bit of cleanup for maintainability.
###@###.### 2004-01-26
if (flags & O_RDONLY) {
access = GENERIC_READ;
}
The variable `pathlen' is unused.
The code could benefit from a little bit of cleanup for maintainability.
###@###.### 2004-01-26
- relates to
-
JDK-4925707 cannot open more than 2035 files on Win98
- Closed