Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-6557881

Incorrect code fixed incorrectly in compiler bug fix 6379327

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P5 P5
    • 7
    • 6
    • deploy
    • 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);
              }
          }

            dgu Dennis Gu (Inactive)
            ahe Peter Ahe
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: