* finalize.c (GC_grow_table): Dereference table in null-check.
+2008-02-25 Hans Boehm <Hans.Boehm@hp.com>
+
+ * finalize.c (GC_grow_table): Dereference table in null-check.
+
2008-02-24 Hans Boehm <Hans.Boehm@hp.com>
* win32_threads.c (GC_delete_gc_thread, GC_delete_thread):
(size_t)new_size * sizeof(struct hash_chain_entry *), NORMAL);
if (new_table == 0) {
- if (table == 0) {
+ if (*table == 0) {
ABORT("Insufficient space for initial table allocation");
} else {
return;