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

(1.1) java.io.FileInputStream.read does the wrong thing if interrupted

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Cannot Reproduce
    • Icon: P4 P4
    • None
    • 1.1.7
    • core-libs
    • generic
    • solaris_2.6

      [...]

          if ((cnt = sysReadFD(fdptr, (char *) buf, 1)) != 1) {
              if (cnt == 0) {
                  return -1; /* EOF */
              }
              if (errno != EINTR)
                  SignalError(0, IO_EXCEPTION, "read error");
          }
          return buf[0];

      In the unlikely case that errno == EINTR, we return the uninitialized value
      of buf[0]. This is bad. readBytes does not have this problem.

      dean.long@Eng 1998-07-07

            mmcclosksunw Michael Mccloskey (Inactive)
            dlong Dean Long
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: