diff options
Diffstat (limited to 'src/io/posixstream.nim')
-rw-r--r-- | src/io/posixstream.nim | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/io/posixstream.nim b/src/io/posixstream.nim index bdae9d50..bfd925f2 100644 --- a/src/io/posixstream.nim +++ b/src/io/posixstream.nim @@ -44,12 +44,6 @@ method recvData*(s: PosixStream, buffer: pointer, len: int): int = proc sreadChar*(s: PosixStream): char = let n = read(s.fd, addr result, 1) - if n < 0: - raisePosixIOError() - if n == 0: - if unlikely(s.isend): - raise newException(EOFError, "eof") - s.isend = true assert n == 1 method sendData*(s: PosixStream, buffer: pointer, len: int): int = |