Commit e93ef719 authored by Martin Blix Grydeland's avatar Martin Blix Grydeland

Free the workers busyobj if any on cleanup

parent 59a09675
......@@ -144,6 +144,10 @@ HSH_Cleanup(struct worker *w)
free(w->nhashpriv);
w->nhashpriv = NULL;
}
if (w->nbusyobj != NULL) {
FREE_OBJ(w->nbusyobj);
w->nbusyobj = NULL;
}
}
void
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment