-
Bug
-
Resolution: Fixed
-
P5
-
6
-
b16
-
generic
-
generic
-
Not verified
When compiler bug 6379327 was fixed, the method openInputStream in
deploy/src/common/share/classes/com/sun/deploy/security/CredentialManager.java
broke.
The compiler team made the program compile again, but I belive the intend of
the original code was different. These lines where removed:
} catch (EOFException e) {
// This implies we just created the file and it is empty
A more correct fix would be to catch the PrivilegedActionException from
doPrivileged:
} catch (PrivilegedActionException e) {
if (e.getCause() instanceof EOFException) {
// This implies we just created the file and it is empty
} else {
// log the error
Trace.securityPrintException(e);
}
}
deploy/src/common/share/classes/com/sun/deploy/security/CredentialManager.java
broke.
The compiler team made the program compile again, but I belive the intend of
the original code was different. These lines where removed:
} catch (EOFException e) {
// This implies we just created the file and it is empty
A more correct fix would be to catch the PrivilegedActionException from
doPrivileged:
} catch (PrivilegedActionException e) {
if (e.getCause() instanceof EOFException) {
// This implies we just created the file and it is empty
} else {
// log the error
Trace.securityPrintException(e);
}
}
- relates to
-
JDK-6379327 erroneous catch block not detected after try block with anonymous class declaration
-
- Closed
-