Skip to content
Snippets Groups Projects
Commit 1fb558d1 authored by Simon Marlow's avatar Simon Marlow
Browse files

Don't refer to oc->next after freeing oc.

parent 356f7939
No related branches found
No related tags found
No related merge requests found
......@@ -246,7 +246,7 @@ void checkUnload (StgClosure *static_objects)
HashTable *addrs;
StgClosure* p;
const StgInfoTable *info;
ObjectCode *oc, *prev;
ObjectCode *oc, *prev, *next;
gen_workspace *ws;
StgClosure* link;
......@@ -283,7 +283,8 @@ void checkUnload (StgClosure *static_objects)
// marked as unreferenced can be physically unloaded, because we
// have no references to it.
prev = NULL;
for (oc = unloaded_objects; oc; prev = oc, oc = oc->next) {
for (oc = unloaded_objects; oc; prev = oc, oc = next) {
next = oc->next;
if (oc->referenced == 0) {
if (prev == NULL) {
unloaded_objects = oc->next;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment