Null stream should be closed initially

This commit is contained in:
Juan Jose Garcia Ripoll 2008-08-19 14:09:23 +02:00
parent 727081c21f
commit fc3913dabc

View file

@ -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");