diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-07-30 08:58:39 -0700 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-07-30 08:58:39 -0700 |
commit | a82c88f98b5a176d62e0055ec9f475179acc313f (patch) | |
tree | 3dc08c7f59b7d9cef690fb9b5a85b583f3a7fdab /regex.c | |
parent | d9cda87d916b668c6f5de7fbf6cf983cb6c737e2 (diff) | |
download | txr-a82c88f98b5a176d62e0055ec9f475179acc313f.tar.gz txr-a82c88f98b5a176d62e0055ec9f475179acc313f.tar.bz2 txr-a82c88f98b5a176d62e0055ec9f475179acc313f.zip |
Correction to COBJ initialization pattern.
In fact, the previosuly documented process is not correct and still
leaves a corruption problem under generational GC (which has been the
default for some time).
* HACKING: Document flaw in the initialization pattern previously
thought to be correct, and show fix.
* hash.c (copy_hash): Fix instance of incorrect pattern.
* regex.c (regex_compile): Likewise.
Diffstat (limited to 'regex.c')
-rw-r--r-- | regex.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1668,11 +1668,11 @@ val regex_compile(val regex_sexp, val error_stream) } else if (opt_derivative_regex || regex_requires_dv(regex_sexp)) { regex_t *regex = coerce(regex_t *, chk_malloc(sizeof *regex)); val ret; + val dv = dv_compile_regex(regex_sexp); regex->kind = REGEX_DV; - regex->r.dv = nil; regex->source = nil; ret = cobj(coerce(mem_t *, regex), regex_s, ®ex_obj_ops); - regex->r.dv = dv_compile_regex(regex_sexp); + regex->r.dv = dv; regex->source = regex_sexp; return ret; } else { |