From 45a54c4286367950bee74781be2ffabd67ad8101 Mon Sep 17 00:00:00 2001
From: pw <pw>
Date: Sun, 17 Jun 2001 19:06:58 +0000
Subject: [PATCH] From Eric Marsden:

FILE-LENGTH should signal a type-error if arg is not associated with a file.
---
 code/fd-stream.lisp | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/code/fd-stream.lisp b/code/fd-stream.lisp
index 8eb583acc..b761bef85 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.55 2001/03/04 20:12:35 pw Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/fd-stream.lisp,v 1.56 2001/06/17 19:06:58 pw Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1023,6 +1023,12 @@
     (:charpos
      (fd-stream-char-pos stream))
     (:file-length
+     (unless (fd-stream-file stream)
+       (error 'simple-type-error
+	      :datum stream
+	      :expected-type 'file-stream
+	      :format-control "~s is not a stream associated with a file."
+	      :format-arguments (list stream)))
      (multiple-value-bind
 	 (okay dev ino mode nlink uid gid rdev size
 	       atime mtime ctime blksize blocks)
-- 
GitLab