K 10 svn:author V 3 dec K 8 svn:date V 27 2001-09-05T22:29:23.000000Z K 7 svn:log V 729 PR: Submitted by: Reviewed by: Approved by: Obtained from: MFC after: N/A, -CURRENT no longer uses this code The patch in 1.28.2.1 was in error. It used FD_ZERO on the fds (fdset) structure, but this is a dunamically allocated array that is only as big as it needs to be. The result of calling FD_ZERO on it would be that it would either overwrite random data in the data-segment, happen to be just the right size and work correctly, or not zero out all of the data it was supposed to. The first case is far more likely (and damaging). This code has been in extensive testing here. And was approved by the release engineers for this last minute push. END