From 260d3351a6ede46a05bff9a317320b662ade9280 Mon Sep 17 00:00:00 2001 From: pw <pw> Date: Fri, 22 Jan 1999 16:51:58 +0000 Subject: [PATCH] FD-STREAM-READ-N-BYTES was incorrectly returning 0 in the case where the user buffer was bigger than the stream buffer and the eof-error-p argument was NIL. --- code/fd-stream.lisp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/fd-stream.lisp b/code/fd-stream.lisp index 91657bde7..6cb0cc26e 100644 --- a/code/fd-stream.lisp +++ b/code/fd-stream.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.47 1999/01/15 09:27:35 dtc Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.48 1999/01/22 16:51:58 pw Exp $") ;;; ;;; ********************************************************************** ;;; @@ -767,11 +767,11 @@ non-server method is also significantly more efficient for large reads. (unless count (error "Error reading ~S: ~A" stream (unix:get-unix-error-msg err))) + (decf now-needed count) (if eof-error-p (when (zerop count) (error 'end-of-file :stream stream)) (return (- requested now-needed))) - (decf now-needed count) (when (zerop now-needed) (return requested)) (incf offset count))))) (t -- GitLab