summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-07-30 08:58:39 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-07-30 08:58:39 -0700
commita82c88f98b5a176d62e0055ec9f475179acc313f (patch)
tree3dc08c7f59b7d9cef690fb9b5a85b583f3a7fdab /ChangeLog
parentd9cda87d916b668c6f5de7fbf6cf983cb6c737e2 (diff)
downloadtxr-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 'ChangeLog')
-rw-r--r--ChangeLog15
1 files changed, 15 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index ee619fc6..6c14d7da 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,20 @@
2015-07-30 Kaz Kylheku <kaz@kylheku.com>
+ 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.
+
+2015-07-30 Kaz Kylheku <kaz@kylheku.com>
+
* HACKING: Restore accidentally deleted document title.
2015-07-29 Kaz Kylheku <kaz@kylheku.com>