mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-20 19:42:30 -08:00
Null stream should be closed initially
This commit is contained in:
parent
727081c21f
commit
fc3913dabc
1 changed files with 1 additions and 1 deletions
|
|
@ -2992,7 +2992,7 @@ init_file(void)
|
|||
|
||||
null_stream = cl_alloc_object(t_stream);
|
||||
null_stream->stream.mode = (short)smm_io;
|
||||
null_stream->stream.closed = 0;
|
||||
null_stream->stream.closed = 1;
|
||||
null_stream->stream.file = NULL;
|
||||
null_stream->stream.object0 = @'base-char';
|
||||
null_stream->stream.object1 = make_constant_base_string("/dev/null");
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue