Applied patch that fixes bug: dirent->d_namlen not available on
linux. Thanks Derick Eddington.
This commit is contained in:
parent
d63a9c1f51
commit
a44a00b405
|
@ -2610,7 +2610,10 @@
|
|||
(let ([rv (foreign-call "ikrt_readdir"
|
||||
(directory-stream-pointer x))])
|
||||
(cond
|
||||
[(eqv? rv 0) #f]
|
||||
[(fixnum? rv)
|
||||
(close-directory-stream x #f)
|
||||
(io-error who (directory-stream-filename x) rv)]
|
||||
[(not rv) #f]
|
||||
[else (utf8->string rv)])))
|
||||
|
||||
(define close-directory-stream
|
||||
|
|
|
@ -1 +1 @@
|
|||
1762
|
||||
1763
|
||||
|
|
|
@ -391,11 +391,12 @@ ikrt_opendir(ikptr dirname, ikpcb* pcb){
|
|||
ikptr
|
||||
ikrt_readdir(ikptr ptr, ikpcb* pcb){
|
||||
DIR* d = (DIR*) ref(ptr, off_pointer_data);
|
||||
errno = 0;
|
||||
struct dirent* ent = readdir(d);
|
||||
if (ent == NULL){
|
||||
return 0;
|
||||
return (errno ? ik_errno_to_code() : false_object);
|
||||
}
|
||||
int len = ent->d_namlen;
|
||||
int len = strlen(ent->d_name);
|
||||
ikptr bv = ik_safe_alloc(pcb, align(disp_bytevector_data+len+1))
|
||||
+ bytevector_tag;
|
||||
ref(bv, -bytevector_tag) = fix(len);
|
||||
|
|
Loading…
Reference in New Issue