diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-10-09 21:32:52 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-10-09 21:32:52 -0700 |
commit | 6ce1525fee353cd85ce9e8a1f76be29fd390b5ae (patch) | |
tree | 918d3ef4e3fd37562f674de8b53db83fc95c0dbd | |
parent | f3d6e9bd89dcc6a3dfe2e9ce8ad221291843edaf (diff) | |
download | txr-6ce1525fee353cd85ce9e8a1f76be29fd390b5ae.tar.gz txr-6ce1525fee353cd85ce9e8a1f76be29fd390b5ae.tar.bz2 txr-6ce1525fee353cd85ce9e8a1f76be29fd390b5ae.zip |
* stream.c (stream_init): No need to gc-protect
std_input, std_output, std_debug, std_error and std_null. These are
not ordinary variables but macros which expand to locations in the
variable binding environment that are already protected. This call was
actually doing nothing, because the symbol involved in the expression
std_input is not yet initialized and so &std_input yields a null
pointer which causes protect to bail.
-rw-r--r-- | ChangeLog | 10 | ||||
-rw-r--r-- | stream.c | 1 |
2 files changed, 10 insertions, 1 deletions
@@ -1,3 +1,13 @@ +2014-10-09 Kaz Kylheku <kaz@kylheku.com> + + * stream.c (stream_init): No need to gc-protect + std_input, std_output, std_debug, std_error and std_null. These are + not ordinary variables but macros which expand to locations in the + variable binding environment that are already protected. This call was + actually doing nothing, because the symbol involved in the expression + std_input is not yet initialized and so &std_input yields a null + pointer which causes protect to bail. + 2014-10-08 Kaz Kylheku <kaz@kylheku.com> Moving system interface functions to separate module out of @@ -2548,7 +2548,6 @@ val abs_path_p(val path) void stream_init(void) { - protect(&std_input, &std_output, &std_debug, &std_error, &std_null, (val *) 0); detect_format_string(); dev_k = intern(lit("dev"), keyword_package); |