diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2014-10-09 21:51:05 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2014-10-09 21:51:05 -0700 |
commit | 570a4cd9315f1a2189cb6d1877aa13a78ec00f0a (patch) | |
tree | 0e73977f4734902cd91ceb26ebb099feec0eb175 /stream.c | |
parent | 6ce1525fee353cd85ce9e8a1f76be29fd390b5ae (diff) | |
download | txr-570a4cd9315f1a2189cb6d1877aa13a78ec00f0a.tar.gz txr-570a4cd9315f1a2189cb6d1877aa13a78ec00f0a.tar.bz2 txr-570a4cd9315f1a2189cb6d1877aa13a78ec00f0a.zip |
Fix gc safety issue in abs_path_p function.
* stream.c (ap_regex): New static variable.
(abs_path_p): Remove local reg variable; replace
uses of reg with ap_regex.
(stream_init): gc-protect ap_regex.
Diffstat (limited to 'stream.c')
-rw-r--r-- | stream.c | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -2527,9 +2527,10 @@ static val open_files_star(val file_list, val substitute_stream) } } +static val ap_regex; + val abs_path_p(val path) { - static val reg; val ch; if (length(path) == zero) @@ -2537,10 +2538,10 @@ val abs_path_p(val path) if ((ch = chr_str(path, zero)) == chr('/') || ch == chr('\\')) return t; - if (!reg) - reg = regex_compile(lit("[A-Za-z0-9]+:[/\\\\]"), nil); + if (!ap_regex) + ap_regex = regex_compile(lit("[A-Za-z0-9]+:[/\\\\]"), nil); - if (match_regex(path, reg, zero)) + if (match_regex(path, ap_regex, zero)) return t; return nil; @@ -2548,6 +2549,8 @@ val abs_path_p(val path) void stream_init(void) { + prot1(&ap_regex); + detect_format_string(); dev_k = intern(lit("dev"), keyword_package); |