Skip to content
Snippets Groups Projects
Commit f25765c3 authored by pmai's avatar pmai
Browse files

Fix by Bob Rogers to correctly handle files with pathnames longer

than 1024 characters, which also reduces consing for pathnames of
more typical lenghts.
parent 9c701a9f
No related branches found
No related tags found
No related merge requests found
......@@ -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/unix-glibc2.lisp,v 1.15 2001/03/04 20:12:44 pw Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix-glibc2.lisp,v 1.16 2002/08/24 01:59:38 pmai Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -3291,12 +3291,20 @@ in at a time in poll.")
(declare (fixnum len) (simple-string pending))
(if (zerop len)
pathname
(let ((result (make-string 1024 :initial-element (code-char 0)))
(let ((result (make-string 100 :initial-element (code-char 0)))
(fill-ptr 0)
(name-start 0))
(loop
(let* ((name-end (or (position #\/ pending :start name-start) len))
(new-fill-ptr (+ fill-ptr (- name-end name-start))))
;; grow the result string, if necessary. the ">=" (instead of
;; using ">") allows for the trailing "/" if we find this
;; component is a directory.
(when (>= new-fill-ptr (length result))
(let ((longer (make-string (* 3 (length result))
:initial-element (code-char 0))))
(replace longer result :end1 fill-ptr)
(setq result longer)))
(replace result pending
:start1 fill-ptr
:end1 new-fill-ptr
......
......@@ -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/unix.lisp,v 1.74 2001/12/06 19:15:41 pmai Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.75 2002/08/24 01:59:37 pmai Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -2249,12 +2249,20 @@
(declare (fixnum len) (simple-string pending))
(if (zerop len)
pathname
(let ((result (make-string 1024 :initial-element (code-char 0)))
(let ((result (make-string 100 :initial-element (code-char 0)))
(fill-ptr 0)
(name-start 0))
(loop
(let* ((name-end (or (position #\/ pending :start name-start) len))
(new-fill-ptr (+ fill-ptr (- name-end name-start))))
;; grow the result string, if necessary. the ">=" (instead of
;; using ">") allows for the trailing "/" if we find this
;; component is a directory.
(when (>= new-fill-ptr (length result))
(let ((longer (make-string (* 3 (length result))
:initial-element (code-char 0))))
(replace longer result :end1 fill-ptr)
(setq result longer)))
(replace result pending
:start1 fill-ptr
:end1 new-fill-ptr
......
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