-
Bug
-
Resolution: Cannot Reproduce
-
P4
-
None
-
1.1.7
-
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
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