diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2016-03-08 06:19:19 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2016-03-08 06:19:19 -0800 |
commit | 43675badfd700d12b2d95bb5117c5672d2722f9f (patch) | |
tree | 7d3be2de4b12d2aa132b92b8e15df2d7e6c22dd4 /sysif.c | |
parent | 685786b3715e984fb37929dfac9891924f60d811 (diff) | |
download | txr-43675badfd700d12b2d95bb5117c5672d2722f9f.tar.gz txr-43675badfd700d12b2d95bb5117c5672d2722f9f.tar.bz2 txr-43675badfd700d12b2d95bb5117c5672d2722f9f.zip |
Bugfix in setenv: default argument handling.
* sysif.c (setenv_wrap): We must use default_arg_strict,
not default_arg, because default_arg treats a nil value
as missing. We do not want to replace an explicit nil
with the default t.
Diffstat (limited to 'sysif.c')
-rw-r--r-- | sysif.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -704,7 +704,7 @@ static val setenv_wrap(val name, val value, val overwrite) { char *nameu8 = utf8_dup_to(c_str(name)); char *valu8 = value ? utf8_dup_to(c_str(value)) : 0; - int ovw = default_arg(overwrite, t) != nil; + int ovw = default_arg_strict(overwrite, t) != nil; if (valu8) setenv(nameu8, valu8, ovw); else if (ovw) |