Skip to content
Snippets Groups Projects
Commit 5b428a0a authored by toy's avatar toy
Browse files

READ-SEQUENCE was returning too soon:

(defvar *s* (open "target:code/scavhook.lisp"))
(defvar *buf* (make-array 5000 :element-type 'character))
(read-sequence *buf* *s* :end 3000) => 3000
(read-sequence *buf* *s* :end 3000) => 1096

or 4096 bytes read, when we should have read 4139 (length of
scavhook.lisp).

Make READ-INTO-SIMPLE-STRING keep trying to READ-N-BYTES until we have
enough bytes or until READ-N-BYTES returns 0 bytes read (in which
case we return a short read because there's nothing left to read).
parent cfc64c87
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment