Commit bc00f058 authored by Pavel Tvrdik's avatar Pavel Tvrdik Committed by Ondrej Zajicek (work)
Browse files

Filter: Prefer xmalloc/xfree to malloc/free

parent 4adcb9df
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -82,7 +82,7 @@ build_tree(struct f_tree *from)
  if (len <= 1024)
    buf = alloca(len * sizeof(struct f_tree *));
  else
    buf = malloc(len * sizeof(struct f_tree *));
    buf = xmalloc(len * sizeof(struct f_tree *));

  /* Convert a degenerated tree into an sorted array */
  i = 0;
@@ -94,7 +94,7 @@ build_tree(struct f_tree *from)
  root = build_tree_rec(buf, 0, len);

  if (len > 1024)
    free(buf);
    xfree(buf);

  return root;
}