Commit 59238768 authored by Maria Matejka's avatar Maria Matejka
Browse files

Slab: Init node in slab head to NULLs.

parent ea259d62
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -216,8 +216,11 @@ sl_new_head(slab *s)
  struct sl_obj *no;
  uint n = s->objs_per_slab;

  h->first_free = o;
  h->num_full = 0;
  *h = (struct sl_head) {
    .first_free = o,
    .num_full = 0,
  };

  while (n--)
    {
      o->slab = h;